Node.js examples for Object:Object Operation
Is Immutable Object
isImmutable = function(x) { return x === null || x === undefined || typeof x === "boolean" || typeof x === "number" || typeof x === "string" }