lolite.noop 1.1.8 → 1.1.10

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 CHANGED
@@ -1,13 +1,10 @@
1
- # lolite.noop
2
-
3
- ### noop()
1
+ ## noop()
4
2
  Does nothing.
5
3
  ```javascript
6
- const noop = require("lolite.noop")
4
+ const lolite = require("lolite.noop")
7
5
  const assert = require("node:assert")
8
6
 
9
7
  assert.ok(lolite.isUndefined(noop())) // noop returns undefined
10
8
  assert.ok(lolite.isFunction(noop)) // noop is as function
11
- ```
12
-
13
- This utility is part of the [LoLite](https://github.com/enterprise-npm-ai/lolite) utility suite.
9
+ ```
10
+
package/package.json CHANGED
@@ -1,16 +1,12 @@
1
1
  {
2
2
  "name": "lolite.noop",
3
- "version": "1.1.8",
4
- "description": "Enterprise-grade noop utility from the LoLite suite",
5
- "main": "index.js",
6
- "author": "10x'ly Made Software Ventures AB",
3
+ "version": "1.1.10",
4
+ "main": "src/lib/noop.js",
7
5
  "license": "EGPSL10X-1.0",
6
+ "author": "10x'ly Made Software Ventures AB",
8
7
  "repository": {
9
8
  "type": "git",
10
9
  "url": "git+https://github.com/enterprise-npm-ai/lolite.git"
11
10
  },
12
- "bugs": {
13
- "url": "https://github.com/enterprise-npm-ai/lolite/issues"
14
- },
15
- "homepage": "https://github.com/enterprise-npm-ai/lolite#readme"
11
+ "dependencies": {}
16
12
  }
File without changes