how to import file with special character in name

251 Views Asked by At

How can I import a file with special characters in it's name in ES6?

I can

import { tomorrow} from 'react-syntax-highlighter/dist/esm/styles/hljs';

but I can't:

import { tomorrow-night} from 'react-syntax-highlighter/dist/esm/styles/hljs';

1

There are 1 best solutions below

0
On

JavaScript do not support hyphens in variable name. They are reserved for subtractions.