lolite.and 1.1.6 → 1.1.7

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 +12 -1
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  ### and(a, b)
4
4
  Returns `b` if both values are truthy, otherwise returns the first value passed into the function that *isn't* truthy.
5
5
  ```javascript
6
- const lolite = require("lolite")
6
+ const and = require("lolite.and")
7
7
 
8
8
  console.log(and(true, true)) // true
9
9
  console.log(and(true, false)) // false
@@ -12,4 +12,6 @@ console.log(and(false, false)) // false
12
12
  console.log(and("truthy value", true)) // true
13
13
  console.log(and(0, true)) // 0
14
14
  console.log(and("", 0)) // ""
15
- ```
15
+ ```
16
+
17
+ This utility is part of the [LoLite](https://github.com/enterprise-npm-ai/lolite) utility suite.
package/package.json CHANGED
@@ -1,7 +1,18 @@
1
1
  {
2
2
  "name": "lolite.and",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
+ "description": "Enterprise-grade and 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",
7
18
  "immediate-error": "^7.1.0",