10 lines
237 B
Plaintext
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);
|
|
};
|