meows
Version:
A kittybin of tools.
67 lines (66 loc) • 2.4 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var arrays_1 = require("./arrays");
exports.uniques = arrays_1.uniques;
exports.hasRepeat = arrays_1.hasRepeat;
exports.randChoose = arrays_1.randChoose;
exports.range = arrays_1.range;
exports.series = arrays_1.series;
exports.last = arrays_1.last;
var async_1 = require("./async");
exports.wait = async_1.wait;
var errors_1 = require("./errors");
exports.log = errors_1.log;
exports.logStr = errors_1.logStr;
exports.logId = errors_1.logId;
exports.ErrorMsg = errors_1.ErrorMsg;
var functions_1 = require("./functions");
exports.compose = functions_1.compose;
exports.pipe = functions_1.pipe;
exports.zipWith = functions_1.zipWith;
exports.identity = functions_1.identity;
exports.effectId = functions_1.effectId;
exports.count = functions_1.count;
exports.not = functions_1.not;
exports.always = functions_1.always;
exports.truthy = functions_1.truthy;
exports.falsy = functions_1.falsy;
exports.allPassAll = functions_1.allPassAll;
var math_1 = require("./math");
exports.Rand = math_1.Rand;
exports.randomInts = math_1.randomInts;
exports.sum = math_1.sum;
exports.product = math_1.product;
exports.diff_abs = math_1.diff_abs;
exports.diff_nums = math_1.diff_nums;
exports.int_to_digits = math_1.int_to_digits;
exports.plus_or_minus = math_1.plus_or_minus;
exports.isZero = math_1.isZero;
exports.fdiv = math_1.fdiv;
exports.divmod = math_1.divmod;
exports.floor = math_1.floor;
exports.negative = math_1.negative;
exports.positive = math_1.positive;
exports.realToFraction = math_1.realToFraction;
exports.simplifyFraction = math_1.simplifyFraction;
exports.flipSign = math_1.flipSign;
exports.splitDecimal = math_1.splitDecimal;
var objects_1 = require("./objects");
exports.ONULL = objects_1.ONULL;
exports.flipProp = objects_1.flipProp;
exports.merge = objects_1.merge;
exports.path = objects_1.path;
var strings_1 = require("./strings");
exports.space = strings_1.space;
exports.spaces = strings_1.spaces;
exports.character = strings_1.character;
exports.alphabet = strings_1.alphabet;
exports.stripSpaces = strings_1.stripSpaces;
var time_1 = require("./time");
exports.numberToMonth = time_1.numberToMonth;
exports.Timer = time_1.Timer;
var types_1 = require("./types");
exports.notEmpty = types_1.notEmpty;
exports.isEmpty = types_1.isEmpty;
exports.isType = types_1.isType;
exports.typeName = types_1.typeName;