UNPKG

luhn-generator

Version:

A generator of numbers that passes the validation of Luhn algorithm or Luhn formula, also known as the 'modulus 10' or 'mod 10' algorithm

33 lines (32 loc) 537 B
{ "name": "invert-kv", "version": "2.0.0", "description": "Invert the key/value of an object. Example: `{foo: 'bar'}` → `{bar: 'foo'}`", "license": "MIT", "repository": "sindresorhus/invert-kv", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, "engines": { "node": ">=4" }, "scripts": { "test": "xo && ava" }, "files": [ "index.js" ], "keywords": [ "object", "key", "value", "kv", "invert" ], "devDependencies": { "ava": "*", "xo": "*" } }