summaryrefslogtreecommitdiff
path: root/lib/sys.js
AgeCommit message (Collapse)Author
2010-02-09Document the changes to sys.inspect's API.Tim Caswell
It now takes an optional showHidden argument that shows hidden/non-enumerable properties of objects. Also cleanup the lib/sys.js file a bit.
2010-02-09Rewrite sys.inspect to be more reliable and handle crazy edge cases.Tim Caswell
2010-01-15API: Move Promise and EventEmitter into 'events' moduleRyan Dahl
2010-01-03Rename "Dynamic Property" to "Getter/Setter" in sys.inspect.Tim Caswell
2010-01-02Fix inspect to not trigger dynamic propertiesTim Caswell
but to display them as special. Add unit tests to match
2009-12-31Fix inspect for the special case of an Object that inherits from Array, but ↵Tim Caswell
has other properties.
2009-12-07sys.inspect prints out special chars correctly (\n, \u0001, etc...)Xavier Shay
2009-12-06sys.inspect is totally more awesome nowXavier Shay
- No longer relies on JSON.stringify, so it can output nulls and functions - Handles circular references better - Has tests
2009-12-06Implement promises entirely in JSRyan Dahl
2009-11-28sys.puts should not kill the process when giving it undefinedFriedemann Altrock
2009-11-16Format JSON for inspecting objectsFelix Geisendörfer
This patch enables formatting for inspecting JSON objects. Example: p({foo: "bar", deep: {foo: "bar"}}) becomes: { "foo": "bar", "deep": { "foo": "bar" } }
2009-11-07API: rename process.inherits to sys.inheritsRyan Dahl
2009-11-03Move memoryUsage() into C on LinuxRyan Dahl
2009-11-03Add sys.memoryUsage()Ryan Dahl
2009-10-29Namespace EVERYTHING under process; introduce GLOBALRyan Dahl
http://groups.google.com/group/nodejs/browse_thread/thread/1034fd2ad2cd93e8
2009-10-13utils.js links to sys.js instead of other way aroundRyan Dahl
2009-10-09symlink sys.js to utils.jsRyan Dahl