mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

PR-URL: https://github.com/nodejs/node/pull/9246 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
19 lines
535 B
JavaScript
19 lines
535 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
if (!common.hasIntl || Intl.v8BreakIterator === undefined) {
|
|
return common.skip('no Intl');
|
|
}
|
|
|
|
const warning = 'Intl.v8BreakIterator is deprecated and will be removed soon.';
|
|
common.expectWarning('DeprecationWarning', warning);
|
|
|
|
try {
|
|
new Intl.v8BreakIterator();
|
|
// May succeed if data is available - OK
|
|
} catch (e) {
|
|
// May throw this error if ICU data is not available - OK
|
|
assert.throws(() => new Intl.v8BreakIterator(), /ICU data/);
|
|
}
|