Comparing version 1.0.0 to 1.0.1
20
index.js
@@ -1,23 +0,7 @@ | ||
/** | ||
* @author Titus Wormer | ||
* @copyright 2016 Titus Wormer | ||
* @license MIT | ||
* @module is-decimal | ||
* @fileoverview Check if a character is decimal. | ||
*/ | ||
'use strict'; | ||
/* eslint-env commonjs */ | ||
/* Expose. */ | ||
module.exports = decimal; | ||
/** | ||
* Check whether the given character code, or the character | ||
* code at the first character, is decimal. | ||
* | ||
* @param {string|number} character | ||
* @return {boolean} - Whether `character` is decimal. | ||
*/ | ||
/* Check if the given character code, or the character | ||
* code at the first character, is decimal. */ | ||
function decimal(character) { | ||
@@ -24,0 +8,0 @@ var code = typeof character === 'string' ? |
{ | ||
"name": "is-decimal", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Check if a character is decimal", | ||
@@ -13,6 +13,3 @@ "license": "MIT", | ||
], | ||
"files": [ | ||
"index.js" | ||
], | ||
"repository": "https://github.com/wooorm/is-decimal", | ||
"repository": "wooorm/is-decimal", | ||
"bugs": "https://github.com/wooorm/is-decimal/issues", | ||
@@ -23,17 +20,17 @@ "author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)", | ||
], | ||
"files": [ | ||
"index.js" | ||
], | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"browserify": "^13.0.1", | ||
"browserify": "^14.1.0", | ||
"esmangle": "^1.0.1", | ||
"nyc": "^7.0.0", | ||
"remark-cli": "^1.0.0", | ||
"remark-comment-config": "^4.0.0", | ||
"remark-github": "^5.0.0", | ||
"remark-lint": "^4.0.0", | ||
"remark-validate-links": "^4.0.0", | ||
"nyc": "^11.0.0", | ||
"remark-cli": "^3.0.0", | ||
"remark-preset-wooorm": "^3.0.0", | ||
"tape": "^4.0.0", | ||
"xo": "^0.16.0" | ||
"xo": "^0.18.0" | ||
}, | ||
"scripts": { | ||
"build-md": "remark . --quiet --frail", | ||
"build-md": "remark . -qfo", | ||
"build-bundle": "browserify index.js --bare -s isDecimal > is-decimal.js", | ||
@@ -49,5 +46,5 @@ "build-mangle": "esmangle < is-decimal.js > is-decimal.min.js", | ||
"space": true, | ||
"esnext": false, | ||
"ignores": [ | ||
"is-decimal.js", | ||
"is-decimal.min.js" | ||
"is-decimal.js" | ||
] | ||
@@ -62,13 +59,6 @@ }, | ||
"remarkConfig": { | ||
"output": true, | ||
"plugins": [ | ||
"comment-config", | ||
"github", | ||
"lint", | ||
"validate-links" | ||
], | ||
"settings": { | ||
"bullet": "*" | ||
} | ||
"preset-wooorm" | ||
] | ||
} | ||
} |
# is-decimal [![Build Status][travis-badge]][travis] [![Coverage Status][codecov-badge]][codecov] | ||
<!--lint disable heading-increment list-item-spacing--> | ||
Check if a character is decimal. | ||
@@ -9,3 +7,3 @@ | ||
[npm][npm-install]: | ||
[npm][]: | ||
@@ -18,11 +16,9 @@ ```bash | ||
Dependencies: | ||
```javascript | ||
var decimal = require('is-decimal'); | ||
decimal('0'); // true | ||
decimal('9'); // true | ||
decimal('a'); // false | ||
decimal('💩'); // false | ||
decimal('0'); //=> true | ||
decimal('9'); //=> true | ||
decimal('a'); //=> false | ||
decimal('💩'); //=> false | ||
``` | ||
@@ -32,3 +28,3 @@ | ||
### `decimal(character)` | ||
### `decimal(character|code)` | ||
@@ -42,2 +38,4 @@ Check whether the given character code (`number`), or the character | ||
* [`is-hexadecimal`](https://github.com/wooorm/is-hexadecimal) | ||
* [`is-whitespace-character`](https://github.com/wooorm/is-whitespace-character) | ||
* [`is-word-character`](https://github.com/wooorm/is-word-character) | ||
@@ -58,3 +56,3 @@ ## License | ||
[npm-install]: https://docs.npmjs.com/cli/install | ||
[npm]: https://docs.npmjs.com/cli/install | ||
@@ -61,0 +59,0 @@ [license]: LICENSE |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Trivial Package
Supply chain riskPackages less than 10 lines of code are easily copied into your own project and may not warrant the additional supply chain risk of an external dependency.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
7
4113
4
9
57
1