| 2418 | } |
| 2419 | |
| 2420 | inline |
| 2421 | bool |
| 2422 | IsExternal(v8::Local<v8::String> str) { |
| 2423 | #if NODE_MODULE_VERSION < ATOM_0_21_MODULE_VERSION |
| 2424 | return str->IsExternalAscii(); |
| 2425 | #else |
| 2426 | return str->IsExternalOneByte(); |
| 2427 | #endif |
| 2428 | } |
| 2429 | |
| 2430 | } // end of namespace imp |
| 2431 |
nothing calls this directly
no outgoing calls
no test coverage detected