freeCodeCamp/curriculum/challenges/arabic/02-javascript-algorithms-an.../es6/use--to-import-everything-f...

834 B

id title challengeType videoUrl localeTitle
587d7b8c367417b2b2512b57 Use * to Import Everything from a File 1

Description

undefined

Instructions

undefined

Tests

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 <code>import * as</code> syntax.");'

Challenge Seed

"use strict";

Before Test

window.require = function(str) {
if (str === 'capitalize_strings') {
return {
capitalize: str => str.toUpperCase(),
lowercase: str => str.toLowerCase()
}}};

Solution

// solution required