Skip to content

Commit bb8cef6

Browse files
committed
reordering in README.md
1 parent d8161ac commit bb8cef6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,14 @@ is_string('hello') # returns true
5858
is_string(b'hello') # returns false
5959
~~~~
6060

61+
**is_full_string**: checks if the given object is non empty string
62+
~~~~
63+
is_full_string(None) # returns false
64+
is_full_string('') # returns false
65+
is_full_string(' ') # returns false
66+
is_full_string('foo') # returns true
67+
~~~~
68+
6169
**is_number**: checks if the given string represents a valid number
6270
~~~~
6371
is_number('42') # returns true
@@ -78,14 +86,6 @@ is_decimal('42.0') # returns true
7886
is_decimal('42') # returns false
7987
~~~~
8088

81-
**is_full_string**: checks if the given object is non empty string
82-
~~~~
83-
is_full_string(None) # returns false
84-
is_full_string('') # returns false
85-
is_full_string(' ') # returns false
86-
is_full_string('foo') # returns true
87-
~~~~
88-
8989
**is_url**: checks if the given string is an url
9090
~~~~
9191
is_url('foo.com') # returns false

0 commit comments

Comments
 (0)