Welcome to mirror list, hosted at ThFree Co, Russian Federation.

throwError.js « testLib - github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ffb6a71f5ae53d8df08071b7c330d11750d0f105 (plain)
1
2
3
4
5
6
7
8
// Using const here because we know that Babel will transform that part
const test = 1;

module.exports = function () {
    let test = 1;

    throw new Error();
};