simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

isZero.js (420B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.isZeroDocs = void 0;
      7 var isZeroDocs = {
      8   name: 'isZero',
      9   category: 'Utils',
     10   syntax: ['isZero(x)'],
     11   description: 'Test whether a value is zero.',
     12   examples: ['isZero(2)', 'isZero(0)', 'isZero(-4)', 'isZero([3, 0, -2, 0])'],
     13   seealso: ['isInteger', 'isNumeric', 'isNegative', 'isPositive']
     14 };
     15 exports.isZeroDocs = isZeroDocs;