mirror of
https://github.com/itflow-org/itflow
synced 2026-09-23 07:01:16 +00:00
Fixed up client files can now download and delete files, added web link to client logins added payments, quotes and recurring to client print and lots of little ui cleanups here and there
This commit is contained in:
67
vendor/moment/benchmarks/isObjectEmpty.js
vendored
Normal file
67
vendor/moment/benchmarks/isObjectEmpty.js
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
var Benchmark = require('benchmark'),
|
||||
moment = require("./../moment.js");
|
||||
|
||||
var isObjectEmpty_getOwnPropertyNames = function(obj) {
|
||||
if (Object.getOwnPropertyNames) {
|
||||
return (Object.getOwnPropertyNames(obj).length === 0);
|
||||
} else {
|
||||
var k;
|
||||
for (k in obj) {
|
||||
if (obj.hasOwnProperty(k)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
var isObjectEmpty_keys = function(obj) {
|
||||
if (Object.keys) {
|
||||
return (Object.keys(obj).length === 0);
|
||||
} else {
|
||||
var k;
|
||||
for (k in obj) {
|
||||
if (obj.hasOwnProperty(k)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
var isObjectEmpty_forIn = function(obj) {
|
||||
var k;
|
||||
for (k in obj) {
|
||||
if (obj.hasOwnProperty(k)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
name: 'isObjectEmpty',
|
||||
tests: {
|
||||
"isObjectEmpty -> for..in": {
|
||||
onComplete: function(){},
|
||||
fn: function(){
|
||||
isObjectEmpty_forIn(moment());
|
||||
},
|
||||
async: false
|
||||
},
|
||||
"isObjectEmpty -> Object.keys": {
|
||||
onComplete: function(){},
|
||||
fn: function(){
|
||||
isObjectEmpty_keys(moment());
|
||||
},
|
||||
async: false
|
||||
},
|
||||
"isObjectEmpty -> Object.getOwnPropertyNames": {
|
||||
onComplete: function(){},
|
||||
fn: function(){
|
||||
isObjectEmpty_getOwnPropertyNames(moment());
|
||||
},
|
||||
async: false
|
||||
}
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user