<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/node.git/doc/api/util.markdown, branch node-review</title>
<subtitle>github.com: joyent/node.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/'/>
<entry>
<title>doc: fix brackets for optional parameters</title>
<updated>2014-09-25T18:26:15+00:00</updated>
<author>
<name>Trevor Norris</name>
<email>trev.norris@gmail.com</email>
</author>
<published>2014-09-24T22:41:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=51b6b6844e9156ab84ae9d0f4592e09f994060b2'/>
<id>51b6b6844e9156ab84ae9d0f4592e09f994060b2</id>
<content type='text'>
Documentation incorrectly used bracket notation for optional parameters.
This caused inconsistencies in usage because of examples like the
following:

    fs.write(fd, data[, position[, encoding]], callback)

This simply fixes all uses of bracket notation in documentation.

Signed-off-by: Trevor Norris &lt;trev.norris@gmail.com&gt;
Reviewed-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Documentation incorrectly used bracket notation for optional parameters.
This caused inconsistencies in usage because of examples like the
following:

    fs.write(fd, data[, position[, encoding]], callback)

This simply fixes all uses of bracket notation in documentation.

Signed-off-by: Trevor Norris &lt;trev.norris@gmail.com&gt;
Reviewed-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>doc: add spec for util.deprecate()</title>
<updated>2014-05-07T21:56:21+00:00</updated>
<author>
<name>Yazhong Liu</name>
<email>yorkiefixer@gmail.com</email>
</author>
<published>2014-05-07T09:48:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=a4f2f9ea8a2a0388c1d76838b90e87b623863868'/>
<id>a4f2f9ea8a2a0388c1d76838b90e87b623863868</id>
<content type='text'>
Signed-off-by: Trevor Norris &lt;trev.norris@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Trevor Norris &lt;trev.norris@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>util: made util.isArray a direct alias for Array.isArray</title>
<updated>2014-04-03T18:39:42+00:00</updated>
<author>
<name>Evan Carroll</name>
<email>me@evancarroll.com</email>
</author>
<published>2014-04-02T00:04:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=95dbb6bf647d90947c0c738533dadf391559be98'/>
<id>95dbb6bf647d90947c0c738533dadf391559be98</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>doc: Adjust util stability index to 'API Frozen'</title>
<updated>2013-08-28T02:52:10+00:00</updated>
<author>
<name>isaacs</name>
<email>i@izs.me</email>
</author>
<published>2013-08-28T02:52:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=73d328de248504d84dc4e550050679ead08b5ac2'/>
<id>73d328de248504d84dc4e550050679ead08b5ac2</id>
<content type='text'>
Closes #6087
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #6087
</pre>
</div>
</content>
</entry>
<entry>
<title>util: pass opts to custom inspect functions</title>
<updated>2013-08-22T23:54:17+00:00</updated>
<author>
<name>Timothy J Fontaine</name>
<email>tjfontaine@gmail.com</email>
</author>
<published>2013-08-22T01:38:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=546ae2eef90c4ef0eb30ef4f52402e3c45e2f3f2'/>
<id>546ae2eef90c4ef0eb30ef4f52402e3c45e2f3f2</id>
<content type='text'>
Objects with custom inpsect functions should get the options that were
passed to `util.inspect()`

fixes #5822
fixes #6098
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Objects with custom inpsect functions should get the options that were
passed to `util.inspect()`

fixes #5822
fixes #6098
</pre>
</div>
</content>
</entry>
<entry>
<title>util: don't throw on circular %j input to format()</title>
<updated>2013-07-29T19:59:15+00:00</updated>
<author>
<name>Ben Noordhuis</name>
<email>info@bnoordhuis.nl</email>
</author>
<published>2013-07-29T19:00:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=2cd7adc7f44e4dfe440162a31a168e6aa9a8cea1'/>
<id>2cd7adc7f44e4dfe440162a31a168e6aa9a8cea1</id>
<content type='text'>
Don't throw an exception when the argument to %j is an object that
contains circular references, it's not helpful. Catch the exception
and return the string '[Circular]'.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Don't throw an exception when the argument to %j is an object that
contains circular references, it's not helpful. Catch the exception
and return the string '[Circular]'.
</pre>
</div>
</content>
</entry>
<entry>
<title>util: Add debuglog, deprecate console lookalikes</title>
<updated>2013-05-21T23:39:50+00:00</updated>
<author>
<name>isaacs</name>
<email>i@izs.me</email>
</author>
<published>2013-05-21T22:22:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=896b2aa7074fc886efd7dd0a397d694763cac7ce'/>
<id>896b2aa7074fc886efd7dd0a397d694763cac7ce</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>doc: fix inpect() -&gt; inspect() typo</title>
<updated>2013-03-12T22:59:10+00:00</updated>
<author>
<name>Nathan Rajlich</name>
<email>nathan@tootallnate.net</email>
</author>
<published>2013-03-12T22:58:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=3288bc953230ba94e2e8bb61c903bbcf60dd810c'/>
<id>3288bc953230ba94e2e8bb61c903bbcf60dd810c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>util: custom `inspect()` method may return an Object</title>
<updated>2013-03-12T20:18:16+00:00</updated>
<author>
<name>Nathan Rajlich</name>
<email>nathan@tootallnate.net</email>
</author>
<published>2013-01-30T03:06:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=66280de133a56964641a08291b06fc0e5ca2b4e1'/>
<id>66280de133a56964641a08291b06fc0e5ca2b4e1</id>
<content type='text'>
This is more like how `JSON.stringify()` works.
Closes #2711.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is more like how `JSON.stringify()` works.
Closes #2711.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'origin/v0.8'</title>
<updated>2012-10-13T23:16:56+00:00</updated>
<author>
<name>Nathan Rajlich</name>
<email>nathan@tootallnate.net</email>
</author>
<published>2012-10-13T23:16:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=4b238b4c2ae8f5cf409cea5ca214b480b00e1a86'/>
<id>4b238b4c2ae8f5cf409cea5ca214b480b00e1a86</id>
<content type='text'>
Conflicts:
	AUTHORS
	ChangeLog
	deps/uv/test/runner-win.c
	doc/api/process.markdown
	lib/repl.js
	src/node_crypto.cc
	src/node_version.h
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	AUTHORS
	ChangeLog
	deps/uv/test/runner-win.c
	doc/api/process.markdown
	lib/repl.js
	src/node_crypto.cc
	src/node_version.h
</pre>
</div>
</content>
</entry>
</feed>
