Skip to content
This repository has been archived by the owner on Oct 1, 2021. It is now read-only.

Commit

Permalink
Update to new version of checkcond
Browse files Browse the repository at this point in the history
checkcond 0.0.6 has important corrections regarding date formats
  • Loading branch information
al66 committed May 26, 2017
1 parent d3b5206 commit 5b8dfdd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "cond-table",
"version": "0.0.4",
"version": "0.0.5",
"description": "decision table",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -37,7 +37,7 @@
"test": "test"
},
"dependencies": {
"checkcond": "0.0.5",
"checkcond": "0.0.6",
"expr-eval": "1.0.0"
}
}
3 changes: 2 additions & 1 deletion test/test.js
Expand Up @@ -118,7 +118,8 @@ describe('Test table 1', function() {
{ 'x': '20', 'y':'37', 'z':null},
{ 'x': '6', 'z':'3'}
];
let testCopy = (JSON.parse(JSON.stringify(testData)))
let testCopy = (JSON.parse(JSON.stringify(testData)));

let table = new Table();
table.compile(testTable);
for (let i=0; i< testData.length; i++) {
Expand Down

0 comments on commit 5b8dfdd

Please sign in to comment.