--- id: 587d7b8c367417b2b2512b57 title: Use * to Import Everything from a File challengeType: 1 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(code.match(/import\s+\*\s+as\s+[a-zA-Z0-9_$]+\s+from\s*"\s*capitalize_strings\s*"\s*;/gi), "Properly uses import * as syntax.");' ```
## Challenge Seed
```js "use strict"; ```
### Before Test
```js window.require = function(str) { if (str === 'capitalize_strings') { return { capitalize: str => str.toUpperCase(), lowercase: str => str.toLowerCase() }}}; ```
## Solution
```js // solution required ```