0.3.2 • Published 12 months ago

@oshimishi/dreamspell-math v0.3.2

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

dreamspell-math

A JavaScript library with DreamSpell date, Zolkin & extras calculations.

Details: Law of Time

npm version MIT license

Notice

The previous version of the package, dreamspell-math npm version, is now obsolete and no longer maintained.

Please switch to using @oshimishi/dreamspell-math to ensure you have the latest updates, improvements, and bug fixes.

Installation

You can install the new version of the package from npm using the following command:

npm install @oshimishi/dreamspell-math

Usage

In Node.js (CommonJS)

const { dreamdate } = require('@oshimishi/dreamspell-math');

// anything that can be parsed to moment() can be used as input
// See https://momentjs.com/docs/#/parsing/ for details

const date = dreamdate([2018, 06, 26]);
const date2 = dreamdate(new Date(1985, 7 - 1, 23));
const date3 = dreamdate(moment('1985-07-23'));

var kin = date.kin;

In TypeScript (ESM)

First, you need to import the module:

import * as g from '@oshimishi/dreamspell-math';

Then you can use it in the same way:

const date = g.dreamdate([2018, 06, 26]);

Examples

const { kin } = require('@oshimishi/dreamspell-math');

const kin1 = kin(1);
const tone1 = kin1.tone;
const sign1 = kin1.sign
import * as g from '@oshimishi/dreamspell-math';

const kin260 = g.kin(g.tone(13), g.sign(20));

Reporting Bugs

Please report bugs on our Github repository.

https://github.com/oshimish/dreamspell-math/issues

License

MIT

0.3.2

12 months ago

0.3.1

12 months ago

0.3.0

12 months ago