106
106
* @ngdoc function
107
107
* @name angular.lowercase
108
108
* @module ng
109
- * @function
109
+ * @kind function
110
110
*
111
111
* @description Converts the specified string to lowercase.
112
112
* @param {string } string String to be converted to lowercase.
@@ -119,7 +119,7 @@ var hasOwnProperty = Object.prototype.hasOwnProperty;
119
119
* @ngdoc function
120
120
* @name angular.uppercase
121
121
* @module ng
122
- * @function
122
+ * @kind function
123
123
*
124
124
* @description Converts the specified string to uppercase.
125
125
* @param {string } string String to be converted to uppercase.
@@ -201,7 +201,7 @@ function isArrayLike(obj) {
201
201
* @ngdoc function
202
202
* @name angular.forEach
203
203
* @module ng
204
- * @function
204
+ * @kind function
205
205
*
206
206
* @description
207
207
* Invokes the `iterator` function once for each item in `obj` collection, which can be either an
@@ -330,7 +330,7 @@ function setHashKey(obj, h) {
330
330
* @ngdoc function
331
331
* @name angular.extend
332
332
* @module ng
333
- * @function
333
+ * @kind function
334
334
*
335
335
* @description
336
336
* Extends the destination object `dst` by copying all of the properties from the `src` object(s)
@@ -367,7 +367,7 @@ function inherit(parent, extra) {
367
367
* @ngdoc function
368
368
* @name angular.noop
369
369
* @module ng
370
- * @function
370
+ * @kind function
371
371
*
372
372
* @description
373
373
* A function that performs no operations. This function can be useful when writing code in the
@@ -387,7 +387,7 @@ noop.$inject = [];
387
387
* @ngdoc function
388
388
* @name angular.identity
389
389
* @module ng
390
- * @function
390
+ * @kind function
391
391
*
392
392
* @description
393
393
* A function that returns its first argument. This function is useful when writing code in the
@@ -409,7 +409,7 @@ function valueFn(value) {return function() {return value;};}
409
409
* @ngdoc function
410
410
* @name angular.isUndefined
411
411
* @module ng
412
- * @function
412
+ * @kind function
413
413
*
414
414
* @description
415
415
* Determines if a reference is undefined.
@@ -424,7 +424,7 @@ function isUndefined(value){return typeof value === 'undefined';}
424
424
* @ngdoc function
425
425
* @name angular.isDefined
426
426
* @module ng
427
- * @function
427
+ * @kind function
428
428
*
429
429
* @description
430
430
* Determines if a reference is defined.
@@ -439,7 +439,7 @@ function isDefined(value){return typeof value !== 'undefined';}
439
439
* @ngdoc function
440
440
* @name angular.isObject
441
441
* @module ng
442
- * @function
442
+ * @kind function
443
443
*
444
444
* @description
445
445
* Determines if a reference is an `Object`. Unlike `typeof` in JavaScript, `null`s are not
@@ -455,7 +455,7 @@ function isObject(value){return value != null && typeof value === 'object';}
455
455
* @ngdoc function
456
456
* @name angular.isString
457
457
* @module ng
458
- * @function
458
+ * @kind function
459
459
*
460
460
* @description
461
461
* Determines if a reference is a `String`.
@@ -470,7 +470,7 @@ function isString(value){return typeof value === 'string';}
470
470
* @ngdoc function
471
471
* @name angular.isNumber
472
472
* @module ng
473
- * @function
473
+ * @kind function
474
474
*
475
475
* @description
476
476
* Determines if a reference is a `Number`.
@@ -485,7 +485,7 @@ function isNumber(value){return typeof value === 'number';}
485
485
* @ngdoc function
486
486
* @name angular.isDate
487
487
* @module ng
488
- * @function
488
+ * @kind function
489
489
*
490
490
* @description
491
491
* Determines if a value is a date.
@@ -502,7 +502,7 @@ function isDate(value) {
502
502
* @ngdoc function
503
503
* @name angular.isArray
504
504
* @module ng
505
- * @function
505
+ * @kind function
506
506
*
507
507
* @description
508
508
* Determines if a reference is an `Array`.
@@ -519,7 +519,7 @@ function isArray(value) {
519
519
* @ngdoc function
520
520
* @name angular.isFunction
521
521
* @module ng
522
- * @function
522
+ * @kind function
523
523
*
524
524
* @description
525
525
* Determines if a reference is a `Function`.
@@ -593,7 +593,7 @@ var trim = (function() {
593
593
* @ngdoc function
594
594
* @name angular.isElement
595
595
* @module ng
596
- * @function
596
+ * @kind function
597
597
*
598
598
* @description
599
599
* Determines if a reference is a DOM element (or wrapped jQuery element).
@@ -704,7 +704,7 @@ function isLeafNode (node) {
704
704
* @ngdoc function
705
705
* @name angular.copy
706
706
* @module ng
707
- * @function
707
+ * @kind function
708
708
*
709
709
* @description
710
710
* Creates a deep copy of `source`, which should be an object or an array.
@@ -850,7 +850,7 @@ function shallowCopy(src, dst) {
850
850
* @ngdoc function
851
851
* @name angular.equals
852
852
* @module ng
853
- * @function
853
+ * @kind function
854
854
*
855
855
* @description
856
856
* Determines if two objects or two values are equivalent. Supports value types, regular
@@ -937,7 +937,7 @@ function sliceArgs(args, startIndex) {
937
937
* @ngdoc function
938
938
* @name angular.bind
939
939
* @module ng
940
- * @function
940
+ * @kind function
941
941
*
942
942
* @description
943
943
* Returns a function which calls function `fn` bound to `self` (`self` becomes the `this` for
@@ -993,7 +993,7 @@ function toJsonReplacer(key, value) {
993
993
* @ngdoc function
994
994
* @name angular.toJson
995
995
* @module ng
996
- * @function
996
+ * @kind function
997
997
*
998
998
* @description
999
999
* Serializes input into a JSON-formatted string. Properties with leading $$ characters will be
@@ -1013,7 +1013,7 @@ function toJson(obj, pretty) {
1013
1013
* @ngdoc function
1014
1014
* @name angular.fromJson
1015
1015
* @module ng
1016
- * @function
1016
+ * @kind function
1017
1017
*
1018
1018
* @description
1019
1019
* Deserializes a JSON string.
0 commit comments