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) • 936 B
JavaScript
;
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 natures corresponding to month and coefficients. */
var table = [[2, 8, 3, 7, 10, 4, 0, 9, 1, 5, 11, 6], [3, 8, 2, 6, 11, 5, 1, 9, 0, 4, 10, 7], [5, 11, 6, 2, 8, 3, 7, 10, 4, 0, 9, 1], [4, 10, 7, 3, 8, 2, 6, 11, 5, 1, 9, 0], [0, 9, 1, 5, 11, 6, 2, 8, 3, 7, 10, 4], [4, 10, 7, 3, 8, 2, 6, 11, 5, 1, 9, 0], [0, 9, 1, 5, 11, 6, 2, 8, 3, 7, 10, 4], [1, 9, 0, 4, 10, 7, 3, 8, 2, 6, 11, 5], [7, 10, 4, 0, 9, 1, 5, 11, 6, 2, 8, 3], [6, 11, 5, 1, 9, 0, 4, 10, 7, 3, 8, 2]];
/**
* Get natures that corresponding to
* the specified month and coefficients.
*/
exports.default = (0, _tableXY2.default)(_enum.nature, table);