A JavaScript library with DreamSpell date, Zolkin & extras calculations.
Details: Law of Time
The previous version of the package, dreamspell-math
, 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.
You can install the new version of the package from npm using the following command:
npm install @oshimishi/dreamspell-math
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;
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]);
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));
Please report bugs on our Github repository.
https://github.com/oshimish/dreamspell-math/issues
MIT