mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-23 18:00:26 +00:00
cleanup old closure directives
This commit is contained in:
parent
73e3f4c10c
commit
f57536ddb6
1 changed files with 6 additions and 6 deletions
12
src/JSON.js
12
src/JSON.js
|
|
@ -66,8 +66,8 @@ function fromJson(json, useNative) {
|
|||
}
|
||||
}
|
||||
|
||||
angular['toJson'] = toJson;
|
||||
angular['fromJson'] = fromJson;
|
||||
angular.toJson = toJson;
|
||||
angular.fromJson = fromJson;
|
||||
|
||||
function toJsonArray(buf, obj, pretty, stack) {
|
||||
if (isObject(obj)) {
|
||||
|
|
@ -90,7 +90,7 @@ function toJsonArray(buf, obj, pretty, stack) {
|
|||
if (obj === null) {
|
||||
buf.push($null);
|
||||
} else if (obj instanceof RegExp) {
|
||||
buf.push(angular['String']['quoteUnicode'](obj.toString()));
|
||||
buf.push(angular.String.quoteUnicode(obj.toString()));
|
||||
} else if (isFunction(obj)) {
|
||||
return;
|
||||
} else if (isBoolean(obj)) {
|
||||
|
|
@ -102,7 +102,7 @@ function toJsonArray(buf, obj, pretty, stack) {
|
|||
buf.push('' + obj);
|
||||
}
|
||||
} else if (isString(obj)) {
|
||||
return buf.push(angular['String']['quoteUnicode'](obj));
|
||||
return buf.push(angular.String.quoteUnicode(obj));
|
||||
} else if (isObject(obj)) {
|
||||
if (isArray(obj)) {
|
||||
buf.push("[");
|
||||
|
|
@ -120,7 +120,7 @@ function toJsonArray(buf, obj, pretty, stack) {
|
|||
}
|
||||
buf.push("]");
|
||||
} else if (isDate(obj)) {
|
||||
buf.push(angular['String']['quoteUnicode'](angular['Date']['toString'](obj)));
|
||||
buf.push(angular.String.quoteUnicode(angular.Date.toString(obj)));
|
||||
} else {
|
||||
buf.push("{");
|
||||
if (pretty) buf.push(pretty);
|
||||
|
|
@ -141,7 +141,7 @@ function toJsonArray(buf, obj, pretty, stack) {
|
|||
buf.push(",");
|
||||
if (pretty) buf.push(pretty);
|
||||
}
|
||||
buf.push(angular['String']['quote'](key));
|
||||
buf.push(angular.String.quote(key));
|
||||
buf.push(":");
|
||||
toJsonArray(buf, value, childPretty, stack);
|
||||
comma = true;
|
||||
|
|
|
|||
Loading…
Reference in a new issue