lolite.ceil 1.1.6 → 1.1.8

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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +13 -4
package/README.md CHANGED
@@ -5,7 +5,7 @@ Round a number up to the nearest whole integer.
5
5
  Non-finite or non-numeric values are coerced to zero.
6
6
 
7
7
  ```javascript
8
- const lolite = require("lolite")
8
+ const ceil = require("lolite.ceil")
9
9
  const positiveResult = ceil(2.1)
10
10
  // result: 3
11
11
 
@@ -14,4 +14,6 @@ const negativeResult = ceil(-2.1)
14
14
 
15
15
  const coercedResult = ceil("garbage")
16
16
  // result: 0 (0 ceiled)
17
- ```
17
+ ```
18
+
19
+ This utility is part of the [LoLite](https://github.com/enterprise-npm-ai/lolite) utility suite.
package/package.json CHANGED
@@ -1,9 +1,21 @@
1
1
  {
2
2
  "name": "lolite.ceil",
3
- "version": "1.1.6",
3
+ "version": "1.1.8",
4
+ "description": "Enterprise-grade ceil utility from the LoLite suite",
4
5
  "main": "index.js",
6
+ "author": "10x'ly Made Software Ventures AB",
7
+ "license": "EGPSL10X-1.0",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/enterprise-npm-ai/lolite.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/enterprise-npm-ai/lolite/issues"
14
+ },
15
+ "homepage": "https://github.com/enterprise-npm-ai/lolite#readme",
5
16
  "dependencies": {
6
17
  "lodash.multiply": "^4.9.0",
18
+ "core-js-pure": "^3.47.0",
7
19
  "immediate-error": "^7.1.0",
8
20
  "integer-values": "^2.0.0",
9
21
  "is-not-integer": "^1.0.2",
@@ -15,7 +27,6 @@
15
27
  "not-not": "^1.0.2",
16
28
  "yanoop": "^1.0.0",
17
29
  "@10xly/strict-equals": "^1.0.0",
18
- "@is-(unknown)/is-finite": "^1.0.0",
19
30
  "@positive-numbers/one": "^3.0.0",
20
31
  "@positive-numbers/zero": "^3.0.0",
21
32
  "construct-new": "^2.0.4",
@@ -30,8 +41,6 @@
30
41
  "string-split": "^0.3.1",
31
42
  "to-str": "^1.0.0",
32
43
  "true-value": "^2.0.5",
33
- "@is-(unknown)/is-false": "^1.5.0",
34
- "@is-(unknown)/is-true": "^1.5.0",
35
44
  "array-filter": "^1.0.0",
36
45
  "@extremejs/utils": "^1.0.0-beta.22",
37
46
  "es-typeof": "^1.0.0",