# HG changeset patch # User Atul Varma # Date 1239812369 25200 # Node ID c4bf1cee771d17fc6af4f21190f5d0b5e5725b1a # Parent 7fff33e9786bebf5060531bd300c803c3bf5eebf Linked more readably to Remedial JS. diff -r 7fff33e9786b -r c4bf1cee771d js/browser-couch.js --- a/js/browser-couch.js Wed Apr 15 09:17:55 2009 -0700 +++ b/js/browser-couch.js Wed Apr 15 09:19:29 2009 -0700 @@ -40,9 +40,10 @@ // === {{{isArray()}}} === // -// A helper function to determine whether an object is an Array -// or not. Taken from "Remedial Javascript" by Douglas Crockford -// at http://javascript.crockford.com/remedial.html. +// A helper function to determine whether an object is an Array or +// not. Taken from +// [[http://javascript.crockford.com/remedial.html|Remedial JavaScript]] +// by Douglas Crockford. function isArray(value) { return (typeof value.length === 'number' &&