Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
chain-able-deps / dist / math / increment.js
Size: Mime:
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
 * increment, decrement, sum, subtract, add, multiply...
 * these should just stay external
 * there was something with the bitwise operator experiment
 * only to use this alongside the conditional for an insane sized evaluator
 *
 * @since 5.0.0-beta.4
 * @name increment
 * @memberOf math
 *
 * @alias inc
 * @alias plusOne
 *
 * @param {number} x number to increment
 * @return {number} x + 1
 *
 * @example
 *  increment(2) //=> 1
 */
// module.exports = add(1)
exports.default = (function (x) { return x + 1; });
//# sourceMappingURL=increment.js.map