mirror of https://github.com/nodejs/node.git
11 lines
158 B
JavaScript
11 lines
158 B
JavaScript
|
var assert = require('assert'),
|
||
|
exception = null;
|
||
|
|
||
|
try {
|
||
|
eval('"\\uc/ef"');
|
||
|
} catch (e) {
|
||
|
exception = e;
|
||
|
}
|
||
|
|
||
|
assert(exception instanceof SyntaxError);
|