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: e85ea36075635e82843be9d45dbfad945b7548c4 (plain)
1
2
3
4
5
6
7
8
// Using deliberately const here because we know that we're transform const to let
const test = 1;

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

    throw new Error();
};