()
| 62 | let importAssertionAlreadyWarned = false; |
| 63 | |
| 64 | function emitImportAssertionWarning() { |
| 65 | if (!importAssertionAlreadyWarned) { |
| 66 | importAssertionAlreadyWarned = true; |
| 67 | process.emitWarning('Use `importAttributes` instead of `importAssertions`', 'ExperimentalWarning'); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | function defineImportAssertionAlias(context) { |
| 72 | return ObjectDefineProperty(context, 'importAssertions', { |
no outgoing calls
no test coverage detected
searching dependent graphs…