* @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)
| 548 | * @returns {boolean} True if `value` is a `String`. |
| 549 | */ |
| 550 | function isString(value){return typeof value === 'string';} |
| 551 | |
| 552 | |
| 553 | /** |
no outgoing calls
no test coverage detected