blob: 91717d139466a27c4702ace11978e28a69565019 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
'use strict';
const common = require('../common');
const assert = require('assert');
if (global.Intl === undefined || Intl.v8BreakIterator === undefined) {
return common.skip('no Intl');
}
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/);
}
|