functionfoundry
Advanced tools
Comparing version 0.7.12 to 0.7.13
@@ -43,2 +43,11 @@ 'use strict'; | ||
var _AVERAGE = require('./AVERAGE'); | ||
Object.defineProperty(exports, 'AVERAGE', { | ||
enumerable: true, | ||
get: function get() { | ||
return _AVERAGE.AVERAGE; | ||
} | ||
}); | ||
var _BIN2DEC = require('./BIN2DEC'); | ||
@@ -725,2 +734,11 @@ | ||
var _SELECT = require('./SELECT'); | ||
Object.defineProperty(exports, 'SELECT', { | ||
enumerable: true, | ||
get: function get() { | ||
return _SELECT.SELECT; | ||
} | ||
}); | ||
var _SERIAL = require('./SERIAL'); | ||
@@ -727,0 +745,0 @@ |
{ | ||
"name": "functionfoundry", | ||
"version": "0.7.12", | ||
"version": "0.7.13", | ||
"description": "Modern JavaScript inspired by spreadsheets", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -5,2 +5,3 @@ export {ABS} from './ABS' | ||
export {AND} from './AND' | ||
export {AVERAGE} from './AVERAGE' | ||
export {BIN2DEC} from './BIN2DEC' | ||
@@ -82,2 +83,3 @@ export {CELL} from './CELL' | ||
export {SEARCH} from './SEARCH' | ||
export {SELECT} from './SELECT' | ||
export {SERIAL} from './SERIAL' | ||
@@ -84,0 +86,0 @@ export {SIN} from './SIN' |
@@ -6,3 +6,3 @@ import test from 'tape' | ||
t.test( 81 ) | ||
t.test( 82 ) | ||
t.ok( ff.ABS, 'ABS should be there') | ||
@@ -12,2 +12,3 @@ t.ok( ff.ACOS, 'ACOS should be there') | ||
t.ok( ff.AND, 'AND should be there') | ||
t.ok( ff.AVERAGE, 'AVERAGE should be there') | ||
t.ok( ff.BIN2DEC, 'BIN2DEC should be there') | ||
@@ -79,2 +80,3 @@ t.ok( ff.CELL, 'CELL should be there') | ||
t.ok( ff.SEARCH, 'SEARCH should be there') | ||
t.ok( ff.SELECT, 'SELECT should be there') | ||
t.ok( ff.SPLIT, 'SPLIT should be there') | ||
@@ -81,0 +83,0 @@ t.ok( ff.SIN, 'SIN should be there') |
Sorry, the diff of this file is too big to display
359236
317
8071