@lowentry/utils 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,14 +9,13 @@ This plugin will add utility functions and classes to make it easier to use Java
|
|
|
9
9
|
|
|
10
10
|
Think about things such as:
|
|
11
11
|
|
|
12
|
-
- looping through arrays and objects indiscriminately
|
|
13
|
-
- ensuring that a value is a certain type
|
|
12
|
+
- looping through arrays and objects, indiscriminately
|
|
13
|
+
- ensuring that a value is of a certain type
|
|
14
14
|
- generating unique IDs
|
|
15
15
|
- trimming certain characters from the start and/or end of a string
|
|
16
16
|
- etc.
|
|
17
17
|
|
|
18
|
-
It's basically just a collection of
|
|
19
|
-
This is done primarily to keep them all in one place, preventing code duplication, and to also make it easier to start new projects which typically need utilities such as these.
|
|
18
|
+
It's basically just a collection of general JavaScript utilities.
|
|
20
19
|
|
|
21
20
|
|
|
22
21
|
## Final words
|