Aktueller Stand
This commit is contained in:
14
backend/node_modules/fast-check/lib/esm/arbitrary/hexaString.js
generated
vendored
Normal file
14
backend/node_modules/fast-check/lib/esm/arbitrary/hexaString.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import { array } from './array.js';
|
||||
import { hexa } from './hexa.js';
|
||||
import { codePointsToStringMapper, codePointsToStringUnmapper } from './_internals/mappers/CodePointsToString.js';
|
||||
import { createSlicesForStringLegacy } from './_internals/helpers/SlicesForStringBuilder.js';
|
||||
const safeObjectAssign = Object.assign;
|
||||
function hexaString(constraints = {}) {
|
||||
const charArbitrary = hexa();
|
||||
const experimentalCustomSlices = createSlicesForStringLegacy(charArbitrary, codePointsToStringUnmapper);
|
||||
const enrichedConstraints = safeObjectAssign(safeObjectAssign({}, constraints), {
|
||||
experimentalCustomSlices,
|
||||
});
|
||||
return array(charArbitrary, enrichedConstraints).map(codePointsToStringMapper, codePointsToStringUnmapper);
|
||||
}
|
||||
export { hexaString };
|
||||
Reference in New Issue
Block a user