* @ngdoc function * @name angular.isString * @function * * @description * Determines if a reference is a `String`. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is a `String`.
(value)
| 347 | * @returns {boolean} True if `value` is a `String`. |
| 348 | */ |
| 349 | function isString(value){return typeof value == 'string';} |
| 350 | |
| 351 | |
| 352 | /** |
no outgoing calls
no test coverage detected