mirror of
https://github.com/oven-sh/bun
synced 2026-02-14 21:01:52 +00:00
8 lines
159 B
JavaScript
8 lines
159 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
// Verify that eval is allowed by default.
|
|
assert.strictEqual(eval('"eval"'), 'eval');
|