📄 ThrowCompletion.js
/home/palash/git/site/node_modules/es-abstract/2025/ThrowCompletion.js
Language: js • Lines: 9
'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);
};