frontend/.pnpm-store/v3/files/37/ce562efcf4b7dd6468ec9990d3a5e88acc51ab54ad69ecb55d2cb7c2aaacd4213c78a6528b126be5bfcf979dad346d4665c04abeeca866ac015b70f814b80f

10 lines
240 B
Plaintext

'use strict';
var CompletionRecord = require('./CompletionRecord');
// https://262.ecma-international.org/9.0/#sec-throwcompletion
module.exports = function ThrowCompletion(argument) {
return new CompletionRecord('throw', argument);
};