PIbd-22.-Stroev-V.M.-Intern.../Lab2/node_modules/es-abstract/2020/ThrowCompletion.js
2023-10-28 00:49:09 +03:00

10 lines
240 B
JavaScript

'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);
};