(prop, value)
| 5682 | */ |
| 5683 | |
| 5684 | function _p(prop, value) { |
| 5685 | if (!props.hasOwnProperty(prop)) { |
| 5686 | return; |
| 5687 | } |
| 5688 | if (arguments.length === 1) { // get |
| 5689 | return Env.can('define_property') ? props[prop] : self[prop]; |
| 5690 | } else { // set |
| 5691 | if (Env.can('define_property')) { |
| 5692 | props[prop] = value; |
| 5693 | } else { |
| 5694 | self[prop] = value; |
| 5695 | } |
| 5696 | } |
| 5697 | } |
| 5698 | |
| 5699 | /* |
| 5700 | function _toASCII(str, AllowUnassigned, UseSTD3ASCIIRules) { |
no outgoing calls
no test coverage detected