* @ngdoc function * @name angular.isString * @module ng * @kind function * * @description * Determines if a reference is a `String`. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is a `String`.
(value)
| 550 | * @returns {boolean} True if `value` is a `String`. |
| 551 | */ |
| 552 | function isString(value){return typeof value === 'string';} |
| 553 | |
| 554 | |
| 555 | /** |
no outgoing calls
no test coverage detected