mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 21:58:48 +02:00

Add `buffer.constants`, containing length limits for `Buffer` and `string` instances. This could be useful for programmers to tell whether a value can be turned into a string or not. Ref: https://github.com/nodejs/node/issues/13465 PR-URL: https://github.com/nodejs/node/pull/13467 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
13 lines
457 B
JavaScript
13 lines
457 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
const { MAX_LENGTH, MAX_STRING_LENGTH } = require('buffer').constants;
|
|
|
|
assert.strictEqual(typeof MAX_LENGTH, 'number');
|
|
assert.strictEqual(typeof MAX_STRING_LENGTH, 'number');
|
|
assert(MAX_STRING_LENGTH <= MAX_LENGTH);
|
|
assert.throws(() => ' '.repeat(MAX_STRING_LENGTH + 1),
|
|
/^RangeError: Invalid string length$/);
|
|
|
|
assert.doesNotThrow(() => ' '.repeat(MAX_STRING_LENGTH));
|