(orig, shim)
| 348 | } |
| 349 | |
| 350 | function useNativeForDom (orig, shim) { |
| 351 | return function (obj) { |
| 352 | if (base.isElement(obj)) return orig.apply(this, arguments); |
| 353 | else return shim.apply(this, arguments); |
| 354 | }; |
| 355 | } |
| 356 | |
| 357 | function failIfShimmed (failTest) { |
| 358 | var shouldThrow; |