(feature)
| 42 | }; |
| 43 | |
| 44 | function has (feature) { |
| 45 | var prop = featureMap[feature]; |
| 46 | return prop in origDate || prop in origProto; |
| 47 | } |
| 48 | |
| 49 | if (!has('date-now')) { |
| 50 | origDate.now = function () { return +(new Date); }; |
no outgoing calls
no test coverage detected