2009-03-05 19:56:01 +00:00
|
|
|
/** section: Language
|
|
|
|
* class Object
|
2009-06-11 20:48:38 +00:00
|
|
|
*
|
2009-03-06 21:41:11 +00:00
|
|
|
* Extensions to the built-in `Object` object.
|
2009-06-11 20:48:38 +00:00
|
|
|
*
|
2009-03-06 21:41:11 +00:00
|
|
|
* Because it is dangerous and invasive to augment `Object.prototype` (i.e.,
|
|
|
|
* add instance methods to objects), all these methods are static methods that
|
|
|
|
* take an `Object` as their first parameter.
|
2009-06-11 20:48:38 +00:00
|
|
|
*
|
2008-12-14 04:36:59 +00:00
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
(function() {
|
2009-06-11 20:48:38 +00:00
|
|
|
|
2009-04-06 15:08:49 +00:00
|
|
|
var _toString = Object.prototype.toString;
|
2009-06-11 20:48:38 +00:00
|
|
|
|
2008-12-14 04:36:59 +00:00
|
|
|
/**
|
|
|
|
* Object.extend(destination, source) -> Object
|
|
|
|
* - destination (Object): The object to receive the new properties.
|
|
|
|
* - source (Object): The object whose properties will be duplicated.
|
|
|
|
*
|
|
|
|
* Copies all properties from the source to the destination object. Returns
|
|
|
|
* the destination object.
|
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
function extend(destination, source) {
|
|
|
|
for (var property in source)
|
|
|
|
destination[property] = source[property];
|
|
|
|
return destination;
|
|
|
|
}
|
|
|
|
|
2008-12-14 04:36:59 +00:00
|
|
|
/**
|
|
|
|
* Object.inspect(object) -> String
|
|
|
|
* - object (Object): The item to be inspected.
|
|
|
|
*
|
|
|
|
* Returns the debug-oriented string representation of the object.
|
|
|
|
*
|
|
|
|
* `undefined` and `null` are represented as such.
|
|
|
|
*
|
|
|
|
* Other types are checked for a `inspect` method. If there is one, it is
|
|
|
|
* used; otherwise, it reverts to the `toString` method.
|
|
|
|
*
|
|
|
|
* Prototype provides `inspect` methods for many types, both built-in and
|
2009-06-11 20:48:38 +00:00
|
|
|
* library-defined — among them `String`, `Array`, `Enumerable` and `Hash`.
|
2008-12-14 04:36:59 +00:00
|
|
|
* These attempt to provide useful string representations (from a
|
2009-06-11 20:48:38 +00:00
|
|
|
* developer's standpoint) for their respective types.
|
2008-12-14 04:36:59 +00:00
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
function inspect(object) {
|
2008-12-11 10:42:15 +00:00
|
|
|
try {
|
2008-09-29 23:04:25 +00:00
|
|
|
if (isUndefined(object)) return 'undefined';
|
2008-12-11 10:42:15 +00:00
|
|
|
if (object === null) return 'null';
|
|
|
|
return object.inspect ? object.inspect() : String(object);
|
|
|
|
} catch (e) {
|
|
|
|
if (e instanceof RangeError) return '...';
|
|
|
|
throw e;
|
|
|
|
}
|
2008-09-29 23:04:25 +00:00
|
|
|
}
|
|
|
|
|
2008-12-14 04:36:59 +00:00
|
|
|
/**
|
|
|
|
* Object.toJSON(object) -> String
|
|
|
|
* - object (Object): The object to be serialized.
|
|
|
|
*
|
|
|
|
* Returns a JSON string.
|
|
|
|
*
|
|
|
|
* `undefined` and `function` types have no JSON representation. `boolean`
|
|
|
|
* and `null` are coerced to strings.
|
|
|
|
*
|
|
|
|
* For other types, `Object.toJSON` looks for a `toJSON` method on `object`.
|
|
|
|
* If there is one, it is used; otherwise the object is treated like a
|
|
|
|
* generic `Object`.
|
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
function toJSON(object) {
|
2008-12-11 10:42:15 +00:00
|
|
|
var type = typeof object;
|
|
|
|
switch (type) {
|
|
|
|
case 'undefined':
|
|
|
|
case 'function':
|
|
|
|
case 'unknown': return;
|
|
|
|
case 'boolean': return object.toString();
|
|
|
|
}
|
2008-09-29 23:04:25 +00:00
|
|
|
|
2008-12-11 10:42:15 +00:00
|
|
|
if (object === null) return 'null';
|
|
|
|
if (object.toJSON) return object.toJSON();
|
2008-09-29 23:04:25 +00:00
|
|
|
if (isElement(object)) return;
|
|
|
|
|
2008-12-11 10:42:15 +00:00
|
|
|
var results = [];
|
|
|
|
for (var property in object) {
|
2008-09-29 23:04:25 +00:00
|
|
|
var value = toJSON(object[property]);
|
|
|
|
if (!isUndefined(value))
|
2008-12-11 10:42:15 +00:00
|
|
|
results.push(property.toJSON() + ': ' + value);
|
|
|
|
}
|
2008-09-29 23:04:25 +00:00
|
|
|
|
2008-12-11 10:42:15 +00:00
|
|
|
return '{' + results.join(', ') + '}';
|
2008-09-29 23:04:25 +00:00
|
|
|
}
|
|
|
|
|
2008-12-14 04:36:59 +00:00
|
|
|
/**
|
|
|
|
* Object.toQueryString(object) -> String
|
|
|
|
* object (Object): The object whose property/value pairs will be converted.
|
|
|
|
*
|
|
|
|
* Turns an object into its URL-encoded query string representation.
|
|
|
|
*
|
|
|
|
* This is a form of serialization, and is mostly useful to provide complex
|
|
|
|
* parameter sets for stuff such as objects in the Ajax namespace (e.g.
|
|
|
|
* [[Ajax.Request]]).
|
|
|
|
*
|
|
|
|
* Undefined-value pairs will be serialized as if empty-valued. Array-valued
|
|
|
|
* pairs will get serialized with one name/value pair per array element. All
|
2009-06-11 20:48:38 +00:00
|
|
|
* values get URI-encoded using JavaScript's native `encodeURIComponent`
|
2008-12-14 04:36:59 +00:00
|
|
|
* function.
|
|
|
|
*
|
|
|
|
* The order of pairs in the serialized form is not guaranteed (and mostly
|
2009-06-11 20:48:38 +00:00
|
|
|
* irrelevant anyway) — except for array-based parts, which are serialized
|
2008-12-14 04:36:59 +00:00
|
|
|
* in array order.
|
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
function toQueryString(object) {
|
2008-12-11 10:42:15 +00:00
|
|
|
return $H(object).toQueryString();
|
2008-09-29 23:04:25 +00:00
|
|
|
}
|
|
|
|
|
2008-12-14 04:36:59 +00:00
|
|
|
/**
|
|
|
|
* Object.toHTML(object) -> String
|
|
|
|
* - object (Object): The object to convert to HTML.
|
|
|
|
*
|
|
|
|
* Converts the object to its HTML representation.
|
|
|
|
*
|
2009-06-11 20:48:38 +00:00
|
|
|
* Returns the return value of `object`'s `toHTML` method if it exists; else
|
2008-12-14 04:36:59 +00:00
|
|
|
* runs `object` through [[String.interpret]].
|
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
function toHTML(object) {
|
2008-12-11 10:42:15 +00:00
|
|
|
return object && object.toHTML ? object.toHTML() : String.interpret(object);
|
2008-09-29 23:04:25 +00:00
|
|
|
}
|
|
|
|
|
2008-12-14 04:36:59 +00:00
|
|
|
/**
|
|
|
|
* Object.keys(object) -> Array
|
|
|
|
* - object (Object): The object to pull keys from.
|
|
|
|
*
|
|
|
|
* Returns an array of the object's property names.
|
|
|
|
*
|
2009-06-11 20:48:38 +00:00
|
|
|
* Note that the order of the resulting array is browser-dependent — it
|
2008-12-14 04:36:59 +00:00
|
|
|
* relies on the `for…in` loop, for which the ECMAScript spec does not
|
|
|
|
* prescribe an enumeration order. Sort the resulting array if you wish to
|
|
|
|
* normalize the order of the object keys.
|
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
function keys(object) {
|
2008-12-11 15:55:02 +00:00
|
|
|
var results = [];
|
2008-12-11 10:42:15 +00:00
|
|
|
for (var property in object)
|
2008-12-11 15:55:02 +00:00
|
|
|
results.push(property);
|
|
|
|
return results;
|
2008-09-29 23:04:25 +00:00
|
|
|
}
|
|
|
|
|
2008-12-14 04:36:59 +00:00
|
|
|
/**
|
|
|
|
* Object.values(object) -> Array
|
|
|
|
* - object (Object): The object to pull values from.
|
|
|
|
*
|
|
|
|
* Returns an array of the object's values.
|
|
|
|
*
|
2009-06-11 20:48:38 +00:00
|
|
|
* Note that the order of the resulting array is browser-dependent — it
|
2008-12-14 04:36:59 +00:00
|
|
|
* relies on the `for…in` loop, for which the ECMAScript spec does not
|
|
|
|
* prescribe an enumeration order.
|
|
|
|
*
|
|
|
|
* Also, remember that while property _names_ are unique, property _values_
|
|
|
|
* have no such constraint.
|
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
function values(object) {
|
2008-12-11 15:55:02 +00:00
|
|
|
var results = [];
|
2008-12-11 10:42:15 +00:00
|
|
|
for (var property in object)
|
2008-12-11 15:55:02 +00:00
|
|
|
results.push(object[property]);
|
|
|
|
return results;
|
2008-09-29 23:04:25 +00:00
|
|
|
}
|
|
|
|
|
2008-12-14 04:36:59 +00:00
|
|
|
/**
|
|
|
|
* Object.clone(object) -> Object
|
|
|
|
* - object (Object): The object to clone.
|
|
|
|
*
|
2009-09-10 16:12:38 +00:00
|
|
|
* Creates and returns a shallow duplicate of the passed object by copying
|
|
|
|
* all of the original's key/value pairs onto an empty object.
|
2008-12-14 04:36:59 +00:00
|
|
|
*
|
|
|
|
* Do note that this is a _shallow_ copy, not a _deep_ copy. Nested objects
|
|
|
|
* will retain their references.
|
2009-09-10 16:12:38 +00:00
|
|
|
*
|
|
|
|
* ### Examples
|
|
|
|
*
|
|
|
|
* var original = {name: 'primaryColors', values: ['red', 'green', 'blue']};
|
|
|
|
* var copy = Object.clone(original);
|
|
|
|
* original.name;
|
|
|
|
* // -> "primaryColors"
|
|
|
|
* original.values[0];
|
|
|
|
* // -> "red"
|
|
|
|
* copy.name;
|
|
|
|
* // -> "primaryColors"
|
|
|
|
* copy.name = "secondaryColors";
|
|
|
|
* original.name;
|
|
|
|
* // -> "primaryColors"
|
|
|
|
* copy.name;
|
|
|
|
* // -> "secondaryColors"
|
|
|
|
* copy.values[0] = 'magenta';
|
|
|
|
* copy.values[1] = 'cyan';
|
|
|
|
* copy.values[2] = 'yellow';
|
|
|
|
* original.values[0];
|
|
|
|
* // -> "magenta" (it was a shallow copy, so they shared the array)
|
2008-12-14 04:36:59 +00:00
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
function clone(object) {
|
|
|
|
return extend({ }, object);
|
|
|
|
}
|
|
|
|
|
2008-12-14 04:36:59 +00:00
|
|
|
/**
|
|
|
|
* Object.isElement(object) -> Boolean
|
|
|
|
* - object (Object): The object to test.
|
|
|
|
*
|
|
|
|
* Returns `true` if `object` is a DOM node of type 1; `false` otherwise.
|
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
function isElement(object) {
|
2008-12-11 10:42:15 +00:00
|
|
|
return !!(object && object.nodeType == 1);
|
2008-09-29 23:04:25 +00:00
|
|
|
}
|
|
|
|
|
2008-12-14 04:36:59 +00:00
|
|
|
/**
|
|
|
|
* Object.isArray(object) -> Boolean
|
|
|
|
* - object (Object): The object to test.
|
|
|
|
*
|
|
|
|
* Returns `true` if `object` is an array; false otherwise.
|
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
function isArray(object) {
|
2009-04-06 15:08:49 +00:00
|
|
|
return _toString.call(object) == "[object Array]";
|
2008-09-29 23:04:25 +00:00
|
|
|
}
|
|
|
|
|
2008-12-14 04:36:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Object.isHash(object) -> Boolean
|
|
|
|
* - object (Object): The object to test.
|
|
|
|
*
|
|
|
|
* Returns `true` if `object` is an instance of the [[Hash]] class; `false`
|
|
|
|
* otherwise.
|
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
function isHash(object) {
|
2008-12-11 10:42:15 +00:00
|
|
|
return object instanceof Hash;
|
|
|
|
}
|
2008-09-29 23:04:25 +00:00
|
|
|
|
2008-12-14 04:36:59 +00:00
|
|
|
/**
|
|
|
|
* Object.isFunction(object) -> Boolean
|
|
|
|
* - object (Object): The object to test.
|
|
|
|
*
|
|
|
|
* Returns `true` if `object` is of type `function`; `false` otherwise.
|
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
function isFunction(object) {
|
|
|
|
return typeof object === "function";
|
|
|
|
}
|
|
|
|
|
2008-12-14 04:36:59 +00:00
|
|
|
/**
|
|
|
|
* Object.isString(object) -> Boolean
|
|
|
|
* - object (Object): The object to test.
|
|
|
|
*
|
|
|
|
* Returns `true` if `object` is of type `string`; `false` otherwise.
|
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
function isString(object) {
|
2009-04-06 15:08:49 +00:00
|
|
|
return _toString.call(object) == "[object String]";
|
2008-09-29 23:04:25 +00:00
|
|
|
}
|
|
|
|
|
2008-12-14 04:36:59 +00:00
|
|
|
/**
|
|
|
|
* Object.isNumber(object) -> Boolean
|
|
|
|
* - object (Object): The object to test.
|
|
|
|
*
|
|
|
|
* Returns `true` if `object` is of type `number`; `false` otherwise.
|
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
function isNumber(object) {
|
2009-04-06 15:08:49 +00:00
|
|
|
return _toString.call(object) == "[object Number]";
|
2008-09-29 23:04:25 +00:00
|
|
|
}
|
|
|
|
|
2008-12-14 04:36:59 +00:00
|
|
|
/**
|
|
|
|
* Object.isUndefined(object) -> Boolean
|
|
|
|
* - object (Object): The object to test.
|
|
|
|
*
|
|
|
|
* Returns `true` if `object` is of type `string`; `false` otherwise.
|
|
|
|
**/
|
2008-09-29 23:04:25 +00:00
|
|
|
function isUndefined(object) {
|
|
|
|
return typeof object === "undefined";
|
|
|
|
}
|
|
|
|
|
|
|
|
extend(Object, {
|
|
|
|
extend: extend,
|
|
|
|
inspect: inspect,
|
|
|
|
toJSON: toJSON,
|
|
|
|
toQueryString: toQueryString,
|
|
|
|
toHTML: toHTML,
|
|
|
|
keys: keys,
|
|
|
|
values: values,
|
|
|
|
clone: clone,
|
|
|
|
isElement: isElement,
|
|
|
|
isArray: isArray,
|
|
|
|
isHash: isHash,
|
|
|
|
isFunction: isFunction,
|
|
|
|
isString: isString,
|
|
|
|
isNumber: isNumber,
|
|
|
|
isUndefined: isUndefined
|
|
|
|
});
|
|
|
|
})();
|