Skip to content

Commit 0d8ac98

Browse files
committed
Update dependencies
1 parent b09cf58 commit 0d8ac98

23 files changed

+33415
-15421
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ node_modules/
44
npm-debug.log
55
site/
66
test/test604.json
7+
test/test251.xlsx
78
.versions
89
.npm/

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ branches:
66

77
language: node_js
88
node_js:
9-
# - "node" # Looks like travis is having problems with the node 10 setup
9+
# - "node"
10+
- "11"
11+
- "10"
1012
- "9"
1113
- "8"
1214
- "7"
1315
- "6"
14-
- "5"
15-
- "4"
16+
1617

1718
script: npm run test:only && npm test
1819

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ Please remember to send the original event, and not the jQuery event, for elemen
485485
486486
### JSON-object
487487
488-
You can use JSON objects in your databases (do not forget use == and !== operators for deep comparision of objects):
488+
You can use JSON objects in your databases (do not forget use == and !== operators for deep comparison of objects):
489489
490490
```sql
491491

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@
5757
"bin",
5858
"lib"
5959
],
60-
"version": "0.4.11"
60+
"version": "0.5.0"
6161
}

dist/alasql-md.js

Lines changed: 0 additions & 43 deletions
This file was deleted.

dist/alasql-worker.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
//! AlaSQL v0.4.11-fix.1096-a34e9d74undefined | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
1+
//! AlaSQL v0.5.0 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
22
/*
33
@module alasql
4-
@version 0.4.11-fix.1096-a34e9d74undefined
4+
@version 0.5.0
55
66
AlaSQL - JavaScript SQL database
77
© 2014-2016 Andrey Gershun & Mathias Rangel Wulff

dist/alasql-worker.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/alasql.fs.js

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
//! AlaSQL v0.4.11-fix.1096-a34e9d74undefined | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
1+
//! AlaSQL v0.5.0 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
22
/*
33
@module alasql
4-
@version 0.4.11-fix.1096-a34e9d74undefined
4+
@version 0.5.0
55

66
AlaSQL - JavaScript SQL database
77
© 2014-2016 Andrey Gershun & Mathias Rangel Wulff
@@ -142,7 +142,7 @@ var alasql = function(sql, params, cb, scope) {
142142
Current version of alasql
143143
@constant {string}
144144
*/
145-
alasql.version = '0.4.11-fix.1096-a34e9d74undefined';
145+
alasql.version = '0.5.0';
146146

147147
/**
148148
Debug flag
@@ -2045,7 +2045,7 @@ _handle_error:
20452045

20462046
// Return the rule stack depth where the nearest error rule can be found.
20472047
// Return FALSE when no error recovery rule was found.
2048-
function locateNearestErrorRecoveryRule(state) {
2048+
var locateNearestErrorRecoveryRule = function(state) {
20492049
var stack_probe = stack.length - 1;
20502050
var depth = 0;
20512051

@@ -3119,6 +3119,7 @@ if (typeof module !== 'undefined' && require.main === module) {
31193119
exports.main(process.argv.slice(1));
31203120
}
31213121
}
3122+
31223123
/**
31233124
12prettyflag.js - prettify
31243125
@todo move this functionality to plugin
@@ -14444,8 +14445,7 @@ yy.While.prototype.execute = function(databaseid, params, cb) {
1444414445

1444514446
if (cb) {
1444614447
var first = false;
14447-
loop();
14448-
function loop(data) {
14448+
var loop = function(data) {
1444914449
if (first) {
1445014450
res.push(data);
1445114451
} else {
@@ -14458,7 +14458,8 @@ yy.While.prototype.execute = function(databaseid, params, cb) {
1445814458
res = cb(res);
1445914459
}
1446014460
}, 0);
14461-
}
14461+
};
14462+
loop();
1446214463
} else {
1446314464
while (fn(params, alasql)) {
1446414465
var res1 = self.loopstat.execute(databaseid, params);
@@ -17294,12 +17295,12 @@ alasql.into.XLSX = function(filename, opts, data, columns, cb) {
1729417295
var wopts = {bookType: 'xlsx', bookSST: false, type: 'binary'};
1729517296
var wbout = XLSX.write(wb, wopts);
1729617297

17297-
function s2ab(s) {
17298+
var s2ab = function(s) {
1729817299
var buf = new ArrayBuffer(s.length);
1729917300
var view = new Uint8Array(buf);
1730017301
for (var i = 0; i != s.length; ++i) view[i] = s.charCodeAt(i) & 0xff;
1730117302
return buf;
17302-
}
17303+
};
1730317304

1730417305
/* the saveAs call downloads a file on the local machine */
1730517306
// saveAs(new Blob([s2ab(wbout)],{type:"application/octet-stream"}), '"'+filename+'"')

dist/alasql.js

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
//! AlaSQL v0.4.11-fix.1096-a34e9d74undefined | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
1+
//! AlaSQL v0.5.0 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
22
/*
33
@module alasql
4-
@version 0.4.11-fix.1096-a34e9d74undefined
4+
@version 0.5.0
55

66
AlaSQL - JavaScript SQL database
77
© 2014-2016 Andrey Gershun & Mathias Rangel Wulff
@@ -142,7 +142,7 @@ var alasql = function(sql, params, cb, scope) {
142142
Current version of alasql
143143
@constant {string}
144144
*/
145-
alasql.version = '0.4.11-fix.1096-a34e9d74undefined';
145+
alasql.version = '0.5.0';
146146

147147
/**
148148
Debug flag
@@ -2045,7 +2045,7 @@ _handle_error:
20452045

20462046
// Return the rule stack depth where the nearest error rule can be found.
20472047
// Return FALSE when no error recovery rule was found.
2048-
function locateNearestErrorRecoveryRule(state) {
2048+
var locateNearestErrorRecoveryRule = function(state) {
20492049
var stack_probe = stack.length - 1;
20502050
var depth = 0;
20512051

@@ -3119,6 +3119,7 @@ if (typeof module !== 'undefined' && require.main === module) {
31193119
exports.main(process.argv.slice(1));
31203120
}
31213121
}
3122+
31223123
/**
31233124
12prettyflag.js - prettify
31243125
@todo move this functionality to plugin
@@ -14439,8 +14440,7 @@ yy.While.prototype.execute = function(databaseid, params, cb) {
1443914440

1444014441
if (cb) {
1444114442
var first = false;
14442-
loop();
14443-
function loop(data) {
14443+
var loop = function(data) {
1444414444
if (first) {
1444514445
res.push(data);
1444614446
} else {
@@ -14453,7 +14453,8 @@ yy.While.prototype.execute = function(databaseid, params, cb) {
1445314453
res = cb(res);
1445414454
}
1445514455
}, 0);
14456-
}
14456+
};
14457+
loop();
1445714458
} else {
1445814459
while (fn(params, alasql)) {
1445914460
var res1 = self.loopstat.execute(databaseid, params);
@@ -17289,12 +17290,12 @@ alasql.into.XLSX = function(filename, opts, data, columns, cb) {
1728917290
var wopts = {bookType: 'xlsx', bookSST: false, type: 'binary'};
1729017291
var wbout = XLSX.write(wb, wopts);
1729117292

17292-
function s2ab(s) {
17293+
var s2ab = function(s) {
1729317294
var buf = new ArrayBuffer(s.length);
1729417295
var view = new Uint8Array(buf);
1729517296
for (var i = 0; i != s.length; ++i) view[i] = s.charCodeAt(i) & 0xff;
1729617297
return buf;
17297-
}
17298+
};
1729817299

1729917300
/* the saveAs call downloads a file on the local machine */
1730017301
// saveAs(new Blob([s2ab(wbout)],{type:"application/octet-stream"}), '"'+filename+'"')

dist/alasql.min.js

Lines changed: 2 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)