change deep import specifier so we can remove symlink

d98762625 2019-05-24 18:42:28 +01:00
parent aef76aeeed
commit f7ca00109d
1 changed files with 1 additions and 1 deletions

@ -109,7 +109,7 @@ chef.toMorseCode("hello").toString();
#### Named imports
You can import specific operations Using a deep import specifier:
```javascript
import { toHex } from "cyberchef/module.mjs";
import { toHex } from "cyberchef/src/node/index.mjs";
toHex("Menu a la carte");
// => 4d 65 6e 75 20 61 20 6c 61 20 63 61 72 74 65
```