forked from 0x2620/oxjs
fix semicolons
This commit is contained in:
parent
4fbfc139b4
commit
1b90cc6ac8
12 changed files with 38 additions and 38 deletions
|
|
@ -14,7 +14,7 @@ Ox.extend = function(object) {
|
|||
if (!Ox.isObject(args[0])) {
|
||||
args = [Ox.makeObject(args)];
|
||||
}
|
||||
Ox.forEach(args, function(arg, i) {
|
||||
Ox.forEach(args, function(arg) {
|
||||
Ox.forEach(arg, function(value, key) {
|
||||
object[key] = value;
|
||||
});
|
||||
|
|
@ -85,7 +85,7 @@ Ox.getset = function(object, args, callback, that) {
|
|||
};
|
||||
|
||||
Ox.hasOwn = function(object, value) {
|
||||
return Object.prototype.hasOwnProperty.call(object, value)
|
||||
return Object.prototype.hasOwnProperty.call(object, value);
|
||||
};
|
||||
|
||||
/*@
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue