Sha256: b27ba1f3ca0e64931d6ec6df309f3170f1f994dbf820890303307a1625d7ee9a
Contents?: true
Size: 752 Bytes
Versions: 28
Compression:
Stored size: 752 Bytes
Contents
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.strOptions = exports.nullOptions = exports.boolOptions = exports.binaryOptions = void 0; var _constants = require("../constants"); const binaryOptions = { defaultType: _constants.Type.BLOCK_LITERAL, lineWidth: 76 }; exports.binaryOptions = binaryOptions; const boolOptions = { trueStr: 'true', falseStr: 'false' }; exports.boolOptions = boolOptions; const nullOptions = { nullStr: 'null' }; exports.nullOptions = nullOptions; const strOptions = { defaultType: _constants.Type.PLAIN, doubleQuoted: { jsonEncoding: false, minMultiLineLength: 40 }, fold: { lineWidth: 80, minContentWidth: 20 } }; exports.strOptions = strOptions;
Version data entries
28 entries across 24 versions & 2 rubygems