frontend/.pnpm-store/v3/files/40/7876ae73081e0801839a1985e9cc4b825e353e725a24f1aaa197d1e9135c29cc666a0abadd5ce06ecb5044fd675bd2f3829b7e657016ea0a475f56aff3494e

10 lines
237 B
Plaintext

'use strict';
var CompletionRecord = require('./CompletionRecord');
// https://262.ecma-international.org/6.0/#sec-normalcompletion
module.exports = function NormalCompletion(value) {
return new CompletionRecord('normal', value);
};