CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
package.json83 linesDownload Raw Back to is-number
1{2  "name": "is-number",3  "description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.",4  "version": "7.0.0",5  "homepage": "https://github.com/jonschlinkert/is-number",6  "author": "Jon Schlinkert (https://github.com/jonschlinkert)",7  "contributors": [8    "Jon Schlinkert (http://twitter.com/jonschlinkert)",9    "Olsten Larck (https://i.am.charlike.online)",10    "Rouven Weßling (www.rouvenwessling.de)"11  ],12  "repository": "jonschlinkert/is-number",13  "bugs": {14    "url": "https://github.com/jonschlinkert/is-number/issues"15  },16  "license": "MIT",17  "files": [18    "index.js"19  ],20  "main": "index.js",21  "engines": {22    "node": ">=0.12.0"23  },24  "scripts": {25    "test": "mocha"26  },27  "devDependencies": {28    "ansi": "^0.3.1",29    "benchmark": "^2.1.4",30    "gulp-format-md": "^1.0.0",31    "mocha": "^3.5.3"32  },33  "keywords": [34    "cast",35    "check",36    "coerce",37    "coercion",38    "finite",39    "integer",40    "is",41    "isnan",42    "is-nan",43    "is-num",44    "is-number",45    "isnumber",46    "isfinite",47    "istype",48    "kind",49    "math",50    "nan",51    "num",52    "number",53    "numeric",54    "parseFloat",55    "parseInt",56    "test",57    "type",58    "typeof",59    "value"60  ],61  "verb": {62    "toc": false,63    "layout": "default",64    "tasks": [65      "readme"66    ],67    "related": {68      "list": [69        "is-plain-object",70        "is-primitive",71        "isobject",72        "kind-of"73      ]74    },75    "plugins": [76      "gulp-format-md"77    ],78    "lint": {79      "reflinks": true80    }81  }82}83