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 / typings / math / increment.d.ts
Size: Mime:
declare const _default: (x: number) => number;
/**
 * 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
 */
export default _default;