UNPKG

wadjet

Version:

The your birth date is based on statistical psychology and will expose your personality. This package as a mocule does its calculations.

22 lines (15 loc) 862 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _tableXY = require('../util/tableXY'); var _tableXY2 = _interopRequireDefault(_tableXY); var _enum = require('../enum'); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** A table of life base corresponding to month and coefficients. */ var table = [[2, 3, 5, 4, 6, 1, 7, 0, 8, 9], [9, 8, 3, 2, 4, 5, 1, 6, 0, 7], [8, 9, 2, 3, 5, 4, 6, 1, 7, 0], [0, 7, 9, 8, 3, 2, 4, 5, 1, 6], [7, 0, 8, 9, 2, 3, 5, 4, 6, 1], [1, 6, 0, 7, 9, 8, 3, 2, 4, 5], [6, 1, 7, 0, 8, 9, 2, 3, 5, 4], [4, 5, 1, 6, 0, 7, 9, 8, 3, 2], [5, 4, 6, 1, 7, 0, 8, 9, 2, 3], [3, 2, 4, 5, 1, 6, 0, 7, 9, 8]]; /** * Get life base that corresponding to * the specified month and coefficients. */ exports.default = (0, _tableXY2.default)(_enum.lifeBase, table);