Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

is-decimal

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-decimal - npm Package Compare versions

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' ?

40

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc