is-eq-positive-number-thirty-six 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 +18 -0
- package/index.js +4 -0
- package/package.json +17 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# is-eq-positive-number-thirty-six
|
|
2
|
+
Equality checker for the number 36.
|
|
3
|
+
|
|
4
|
+
## Installation
|
|
5
|
+
```bash
|
|
6
|
+
npm install is-eq-positive-number-thirty-six
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
```js
|
|
11
|
+
const isthirtysix = require("is-eq-positive-number-thirty-six")
|
|
12
|
+
const assert = require("assert-fn")
|
|
13
|
+
|
|
14
|
+
assert(isthirtysix(36))
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## License
|
|
18
|
+
EGPSL10X-1.0
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "is-eq-positive-number-thirty-six",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Check if a value is equal to positive number 36",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"author": "10x'ly Made Softwares",
|
|
7
|
+
"license": "EGPSL10X-1.0",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/10xly/integer-value-checking.git",
|
|
11
|
+
"directory": "packages/is-eq-positive-number-thirty-six"
|
|
12
|
+
},
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@positive-numbers/thirty-six": "*",
|
|
15
|
+
"@10xly/create-is-eq-fn": "^1.0.0"
|
|
16
|
+
}
|
|
17
|
+
}
|