'use strict';
// returns true if the Error object returns a stack string// with the signature of 'ErrorType: message'module.exports = functionv8StyleStackMessage() {
var e = newError('yep')
if (!e.stack) returnfalseif (e.stack.substr(0, 11) === 'Error: yep\n') returntruereturnfalse
}