nodegit
Version:
Node.js libgit2 asynchronous native bindings
31 lines (24 loc) • 587 B
JavaScript
;
var NodeGit = require("../../");
/**
* Normalize an object to match a struct.
*
* @param {String, Object} oid - The oid string or instance.
* @return {Object} An Oid instance.
*/
function normalizeOptions(options, Ctor) {
if (!options) {
return null;
}
if (options instanceof Ctor) {
return options;
}
var instance = new Ctor();
Object.keys(options).forEach(function (key) {
if (typeof options[key] !== "undefined") {
instance[key] = options[key];
}
});
return instance;
}
NodeGit.Utils.normalizeOptions = normalizeOptions;