Prebuilt module for commit 9a49c2141c

This commit is contained in:
Paper.js Bot 2016-07-26 08:28:31 +00:00
parent 0c3f545464
commit 9c3769456c
5 changed files with 14 additions and 14 deletions

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Tue Jul 26 10:20:30 2016 +0200
* Date: Tue Jul 26 10:25:32 2016 +0200
*
***
*
@ -334,7 +334,7 @@ Base.inject({
list.__index = begin + 1;
return obj && options && options.clone ? obj.clone() : obj;
}
obj = Base.create(this.prototype);
obj = Base.create(proto);
if (readIndex)
obj.__read = true;
obj = obj.initialize.apply(obj, begin > 0 || begin + amount < length
@ -422,7 +422,7 @@ Base.inject({
},
isPlainValue: function(obj, asString) {
return this.isPlainObject(obj) || Array.isArray(obj)
return Base.isPlainObject(obj) || Array.isArray(obj)
|| asString && typeof obj === 'string';
},

6
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Tue Jul 26 10:20:30 2016 +0200
* Date: Tue Jul 26 10:25:32 2016 +0200
*
***
*
@ -334,7 +334,7 @@ Base.inject({
list.__index = begin + 1;
return obj && options && options.clone ? obj.clone() : obj;
}
obj = Base.create(this.prototype);
obj = Base.create(proto);
if (readIndex)
obj.__read = true;
obj = obj.initialize.apply(obj, begin > 0 || begin + amount < length
@ -422,7 +422,7 @@ Base.inject({
},
isPlainValue: function(obj, asString) {
return this.isPlainObject(obj) || Array.isArray(obj)
return Base.isPlainObject(obj) || Array.isArray(obj)
|| asString && typeof obj === 'string';
},

File diff suppressed because one or more lines are too long

6
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Tue Jul 26 10:20:30 2016 +0200
* Date: Tue Jul 26 10:25:32 2016 +0200
*
***
*
@ -334,7 +334,7 @@ Base.inject({
list.__index = begin + 1;
return obj && options && options.clone ? obj.clone() : obj;
}
obj = Base.create(this.prototype);
obj = Base.create(proto);
if (readIndex)
obj.__read = true;
obj = obj.initialize.apply(obj, begin > 0 || begin + amount < length
@ -422,7 +422,7 @@ Base.inject({
},
isPlainValue: function(obj, asString) {
return this.isPlainObject(obj) || Array.isArray(obj)
return Base.isPlainObject(obj) || Array.isArray(obj)
|| asString && typeof obj === 'string';
},

File diff suppressed because one or more lines are too long