brainspan

0.0.2-9 • Public • Published

npm version CircleCI codecov esdoc

Brainspan

When dealing with units of measure, Brainspan does the thinking so you don't have to. Brainspan was inspired by Rails Rails Numeric and ActiveSupport::Duration.

Example Usage

Use with Numeric Mixin:

require('brainspan').enableMixins();

(1).month.ago(); // Date representing the timestamp from a month prior to current time
(1).month.fromNow(); // Date representing the timestamp from a month in the future
(2).weeks.before(new Date(0)); // Date representing two weeks before the Unix Epoc
(8).days.after(new Date('2019-03-10')); // Date representing March 18, 2019

If you prefer not to extend the Number prototype:

const { Duration } = require('brainspan');

const oneMonth = new Duration(Duration.SECONDS_PER_MONTH);
oneMonth.ago(); // Date representing the timestamp from a month prior to current time
oneMonth.fromNow(); // Date representing the timestamp from a month in the future

const twoWeeks = new Duration(Duration.SECONDS_PER_WEEK * 2);
twoWeeks.before(new Date(0)); // Date representing two weeks before the Unix Epoc

const eightDays = new Duration(Duration.SECONDS_PER_DAY * 8);
eightDays.after(new Date('2019-03-10')); // Date representing March 18, 2019

Links

API Documentation

https://grizzly-atoms.github.io/brainspan/

NPM

https://www.npmjs.com/package/brainspan

Package Sidebar

Install

npm i brainspan

Weekly Downloads

0

Version

0.0.2-9

License

ISC

Unpacked Size

11.9 kB

Total Files

12

Last publish

Collaborators

  • grizzley-atoms