Skip to content

Releases: artisgarbage/unique-key-js

v1.0.0 Initial Release

19 Jul 20:48
Compare
Choose a tag to compare

Initial release of npm unique-key-js module

Installation

npm install unique-key-js OR yarn install unique-key-js

Usage

const UniqueKey = require('./UniqueKey')
console.log('More Detailed Key Info : ', UniqueKey.getInfoAboutKeys(people))
console.log('Keys with Unique Values : ', UniqueKey.getKeysWithUniqueValues(people))

Future

  • Improve performance of UniqueKey.getKeysWithUniqueValues() as it's coeficient in asymptotic notation could be reduced by 1 by further limiting it's functional behavior.