mirror of
https://github.com/gpujs/gpu.js.git
synced 2026-01-25 16:08:02 +00:00
fix: Bump version and build
This commit is contained in:
parent
103b5e19b4
commit
142f191eb4
6
dist/gpu-browser-core.js
vendored
6
dist/gpu-browser-core.js
vendored
@ -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';
|
||||
|
||||
6
dist/gpu-browser-core.min.js
vendored
6
dist/gpu-browser-core.min.js
vendored
File diff suppressed because one or more lines are too long
6
dist/gpu-browser.js
vendored
6
dist/gpu-browser.js
vendored
@ -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';
|
||||
|
||||
6
dist/gpu-browser.min.js
vendored
6
dist/gpu-browser.min.js
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gpu.js",
|
||||
"version": "2.3.0",
|
||||
"version": "2.3.1",
|
||||
"description": "GPU Accelerated JavaScript",
|
||||
"engines": {
|
||||
"node": ">=8.0.0"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user