https://github.com/vweevers/monotonic-lexicographic-timestamp
Monotonically increasing timestamp with lexicographic order.
https://github.com/vweevers/monotonic-lexicographic-timestamp
Last synced: about 1 year ago
JSON representation
Monotonically increasing timestamp with lexicographic order.
- Host: GitHub
- URL: https://github.com/vweevers/monotonic-lexicographic-timestamp
- Owner: vweevers
- License: mit
- Created: 2017-10-24T07:48:53.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-12-11T17:48:26.000Z (over 5 years ago)
- Last Synced: 2025-04-25T01:58:21.388Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1000 Bytes
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# monotonic-lexicographic-timestamp
**Monotonically increasing timestamp with lexicographic order. Simply adds a suffix if time is the same as the last call. Hex-encoded.**
[](https://www.npmjs.org/package/monotonic-lexicographic-timestamp) [](https://www.npmjs.org/package/monotonic-lexicographic-timestamp) [](http://travis-ci.org/vweevers/monotonic-lexicographic-timestamp) [](https://ci.appveyor.com/project/vweevers/monotonic-lexicographic-timestamp) [](https://standardjs.com) [](https://david-dm.org/vweevers/monotonic-lexicographic-timestamp)
## example
```js
const mlts = require('monotonic-lexicographic-timestamp')()
// You can provide your own date or timestamp
console.log(mlts(new Date(0))) // '00'
console.log(mlts(0)) // '00.01'
// Otherwise it'll use Date.now()
console.log(mlts())
console.log(mlts())
const custom = require('monotonic-lexicographic-timestamp')({
separator: '!'
})
console.log(custom(1508832007017)) // 'ff080afa6b2a9370'
console.log(custom(1508832007017)) // 'ff080afa6b2a9370!01'
console.log(custom(1508832007017)) // 'ff080afa6b2a9370!02'
console.log(custom(1508832007018)) // 'ff080afa6b2a9378'
```
## api
### `mlts = require('monotonic-lexicographic-timestamp')([options])`
Options are passed to [`unique-lexicographic-integer`]:
- `options.separator` (string): defaults to `'.'`
- `options.strict` (boolean): opt-in to type-checking input. If true, `mlts()` will throw:
- A `TypeError` if input is not a number or if `NaN`
- A `RangeError` if input is < 0 or > `Number.MAX_SAFE_INTEGER`.
## see also
- [`monotonic-timestamp`]: if you want floats
- [`monotonic-timestamp-base36`]: if you want to save bytes
- [`lexicographic-integer`]: main encoding logic
- [`lexicographic-integer-encoding`]: encoding for `level(up)`
- [`unique-lexicographic-integer`]: `lexicographic-integer` plus a suffix if input is the same as the last call.
## install
With [npm](https://npmjs.org) do:
```
npm install monotonic-lexicographic-timestamp
```
## license
[MIT](http://opensource.org/licenses/MIT) © Vincent Weevers
[`lexicographic-integer`]: https://github.com/substack/lexicographic-integer
[`lexicographic-integer-encoding`]: https://github.com/vweevers/lexicographic-integer-encoding
[`unique-lexicographic-integer`]: https://github.com/vweevers/unique-lexicographic-integer
[`monotonic-timestamp`]: https://github.com/dominictarr/monotonic-timestamp
[`monotonic-timestamp-base36`]: https://github.com/nathan7/monotonic-timestamp-base36