Browser-friendly enhanced util fully compatible with standard node.js util
This package modifies and enhances the standard util
from node.js
API
definePropery
definePropery(object, key, value[, aOptions])
Define a porperty on the object.
usage
definePropery = require 'util-ex/lib/definePropery' propValue = ''definePropery this'prop''simpleValue'definePropery this'prop'undefined : -> propValue : propValue = value
newFunction
newFunction(name, arguments, body[, scope[, values]])
newFunction(functionString[, scope[, values]])
create a function via sring.
newFunction = var fn = //fn.toString() is : "function yourFuncName(arg1, arg2) { return log(arg1+arg2); }"