@civet/core 1.0.0-rc8 → 1.0.0

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.
@@ -22,7 +22,7 @@ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
22
22
  /**
23
23
  * Returns incrementing unique string identifiers.
24
24
  * Uniqueness is guaranteed for <Number.MAX_SAFE_INTEGER> iterations.
25
- * The values can be compared alphanumerically, as long as they do not exceed the previously specified iterations.
25
+ * The values can be compared alphanumerically, as long as they do not exceed the previously specified number of iterations.
26
26
  *
27
27
  * @param {string?} previous Previous identifier
28
28
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@civet/core",
3
- "version": "1.0.0-rc8",
3
+ "version": "1.0.0",
4
4
  "description": "Civet",
5
5
  "main": "./lib/index.js",
6
6
  "scripts": {
@@ -3,7 +3,7 @@ import { v1 as uuid } from 'uuid';
3
3
  /**
4
4
  * Returns incrementing unique string identifiers.
5
5
  * Uniqueness is guaranteed for <Number.MAX_SAFE_INTEGER> iterations.
6
- * The values can be compared alphanumerically, as long as they do not exceed the previously specified iterations.
6
+ * The values can be compared alphanumerically, as long as they do not exceed the previously specified number of iterations.
7
7
  *
8
8
  * @param {string?} previous Previous identifier
9
9
  */