fix: Bump version and build

This commit is contained in:
Robert Plummer 2019-12-17 09:40:07 -05:00
parent 103b5e19b4
commit 142f191eb4
5 changed files with 13 additions and 13 deletions

View File

@ -4,8 +4,8 @@
*
* GPU Accelerated JavaScript
*
* @version 2.3.0
* @date Tue Nov 26 2019 09:51:10 GMT-0500 (Eastern Standard Time)
* @version 2.3.1
* @date Tue Dec 17 2019 09:39:34 GMT-0500 (Eastern Standard Time)
*
* @license MIT
* The MIT License
@ -13389,7 +13389,7 @@ const utils = {
getVariableType(value, strictIntegers) {
if (utils.isArray(value)) {
if (value[0].nodeName === 'IMG') {
if (value.length > 0 && value[0].nodeName === 'IMG') {
return 'HTMLImageArray';
}
return 'Array';

File diff suppressed because one or more lines are too long

6
dist/gpu-browser.js vendored
View File

@ -4,8 +4,8 @@
*
* GPU Accelerated JavaScript
*
* @version 2.3.0
* @date Tue Nov 26 2019 09:51:10 GMT-0500 (Eastern Standard Time)
* @version 2.3.1
* @date Tue Dec 17 2019 09:39:34 GMT-0500 (Eastern Standard Time)
*
* @license MIT
* The MIT License
@ -17823,7 +17823,7 @@ const utils = {
getVariableType(value, strictIntegers) {
if (utils.isArray(value)) {
if (value[0].nodeName === 'IMG') {
if (value.length > 0 && value[0].nodeName === 'IMG') {
return 'HTMLImageArray';
}
return 'Array';

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "gpu.js",
"version": "2.3.0",
"version": "2.3.1",
"description": "GPU Accelerated JavaScript",
"engines": {
"node": ">=8.0.0"