functionfoundry
Advanced tools
Comparing version 0.7.7 to 0.7.8
@@ -355,2 +355,11 @@ 'use strict'; | ||
var _ISEMPTY = require('./ISEMPTY'); | ||
Object.defineProperty(exports, 'ISEMPTY', { | ||
enumerable: true, | ||
get: function get() { | ||
return _ISEMPTY.ISEMPTY; | ||
} | ||
}); | ||
var _ISERROR = require('./ISERROR'); | ||
@@ -357,0 +366,0 @@ |
{ | ||
"name": "functionfoundry", | ||
"version": "0.7.7", | ||
"version": "0.7.8", | ||
"description": "Modern JavaScript inspired by spreadsheets", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -40,2 +40,3 @@ export {ABS} from './ABS' | ||
export {ISEMAIL} from './ISEMAIL' | ||
export {ISEMPTY} from './ISEMPTY' | ||
export {ISERROR} from './ISERROR' | ||
@@ -42,0 +43,0 @@ export {ISEVEN} from './ISEVEN' |
@@ -6,3 +6,3 @@ import test from 'tape' | ||
t.test( 72 ) | ||
t.test( 73 ) | ||
t.ok( ff.ABS, 'ABS should be there') | ||
@@ -40,2 +40,3 @@ t.ok( ff.ACOS, 'ACOS should be there') | ||
t.ok( ff.ISBLANK, 'ISBLANK should be there') | ||
t.ok( ff.ISEMPTY, 'ISEMPTY should be there') | ||
t.ok( ff.ISEMAIL, 'ISEMAIL should be there') | ||
@@ -42,0 +43,0 @@ t.ok( ff.ISERROR, 'ISERROR should be there') |
Sorry, the diff of this file is too big to display
352162
7644