@lodash-modularized/uniq 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.
- package/README.md +30 -0
- package/index.js +1 -0
- package/package.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# @lodash-modularized/uniq
|
|
2
|
+
|
|
3
|
+
A drop-in replacement for `lodash.uniq`, backed by the main `lodash` package.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```js
|
|
8
|
+
const fn = require("@lodash-modularized/uniq")
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Why?
|
|
12
|
+
|
|
13
|
+
The original `lodash.uniq` package is not actively maintained.
|
|
14
|
+
This version always pulls from the up-to-date `lodash`.
|
|
15
|
+
|
|
16
|
+
## Override
|
|
17
|
+
|
|
18
|
+
```json
|
|
19
|
+
{
|
|
20
|
+
"overrides": {
|
|
21
|
+
"lodash.uniq": "npm:@lodash-modularized/uniq"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
See the main repository for more information.
|
|
27
|
+
|
|
28
|
+
## License
|
|
29
|
+
|
|
30
|
+
MIT
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("lodash/uniq")
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lodash-modularized/uniq",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"main": "index.js",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/xsfj/lodash-modularized"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"lodash",
|
|
11
|
+
"lodash-modularized",
|
|
12
|
+
"stdlib",
|
|
13
|
+
"lodash-es"
|
|
14
|
+
],
|
|
15
|
+
"author": "Fox Jones",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"lodash": "^4.17.23"
|
|
19
|
+
}
|
|
20
|
+
}
|