mirror of
https://github.com/knex/knex.git
synced 2025-07-07 09:01:19 +00:00
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
// helpers.js
|
|
// -------
|
|
|
|
// Just some common functions needed in multiple places within the library.
|
|
var _ = require('lodash');
|
|
|
|
var helpers = {
|
|
|
|
// Pick off the attributes from only the current layer of the object.
|
|
skim: function(data) {
|
|
return _.map(data, function(obj) {
|
|
return _.pick(obj, _.keys(obj));
|
|
});
|
|
},
|
|
|
|
// Check if the first argument is an array, otherwise
|
|
// uses all arguments as an array.
|
|
normalizeArr: function() {
|
|
var args = new Array(arguments.length);
|
|
for (var i = 0; i < args.length; i++) {
|
|
args[i] = arguments[i];
|
|
}
|
|
if (_.isArray(args[0])) {
|
|
return args[0];
|
|
}
|
|
return args;
|
|
},
|
|
|
|
// Used to signify deprecated functionality.
|
|
deprecate: function(msg) {
|
|
this.warn(msg);
|
|
},
|
|
|
|
// Used to warn about incorrect use, without error'ing
|
|
warn: function(msg) {
|
|
if (typeof console !== "undefined" && console !== null &&
|
|
typeof console.warn === "function") {
|
|
console.warn("Knex: " + msg);
|
|
}
|
|
},
|
|
|
|
// Sort the keys for the insert
|
|
sortObject: function(obj) {
|
|
return _.sortBy(_.pairs(obj), function(a) {
|
|
return a[0];
|
|
});
|
|
}
|
|
|
|
};
|
|
|
|
module.exports = helpers; |