summaryrefslogtreecommitdiff
path: root/test/parallel/test-url-null-char.js
blob: 468080844d534bb06efde74b5fc7ced280b0b93f (plain)
1
2
3
4
5
6
7
8
'use strict';
require('../common');
const assert = require('assert');

assert.throws(
  () => { new URL('a\0b'); },
  { input: 'a\0b' }
);