astro-ghostcms/.pnpm-store/v3/files/40/7876ae73081e0801839a1985e9c...

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