(source, key)
| 17 | * @return {boolean} `true` if the provided `key` exists on the `source` object, otherwise `false`. |
| 18 | */ |
| 19 | var HasValue = function (source, key) |
| 20 | { |
| 21 | return (source.hasOwnProperty(key)); |
| 22 | }; |
| 23 | |
| 24 | module.exports = HasValue; |
no outgoing calls
no test coverage detected
searching dependent graphs…