1.5.3 β€’ Published 14 days ago

dedent v1.5.3

Weekly downloads
6,432,315
License
MIT
Repository
github
Last release
14 days ago

Usage

npm i dedent
import dedent from "dedent";

function usageExample() {
	const first = dedent`A string that gets so long you need to break it over
                       multiple lines. Luckily dedent is here to keep it
                       readable without lots of spaces ending up in the string
                       itself.`;

	const second = dedent`
    Leading and trailing lines will be trimmed, so you can write something like
    this and have it work as you expect:

      * how convenient it is
      * that I can use an indented list
         - and still have it do the right thing

    That's all.
  `;

	const third = dedent(`
    Wait! I lied. Dedent can also be used as a function.
  `);

	return first + "\n\n" + second + "\n\n" + third;
}

console.log(usageExample());
A string that gets so long you need to break it over
multiple lines. Luckily dedent is here to keep it
readable without lots of spaces ending up in the string
itself.

Leading and trailing lines will be trimmed, so you can write something like
this and have it work as you expect:

  * how convenient it is
  * that I can use an indented list
    - and still have it do the right thing

That's all.

Wait! I lied. Dedent can also be used as a function.

Options

You can customize the options dedent runs with by calling its withOptions method with an object:

import dedent from 'dedent';

dedent.withOptions({ /* ... */ })`input`;
dedent.withOptions({ /* ... */ })(`input`);

options returns a new dedent function, so if you'd like to reuse the same options, you can create a dedicated dedent function:

import dedent from 'dedent';

const dedenter = dedent.withOptions({ /* ... */ });

dedenter`input`;
dedenter(`input`);

escapeSpecialCharacters

JavaScript string tags by default add an extra \ escape in front of some special characters such as $ dollar signs. dedent will escape those special characters when called as a string tag.

If you'd like to change the behavior, an escapeSpecialCharacters option is available. It defaults to:

  • false: when dedent is called as a function
  • true: when dedent is called as a string tag
import dedent from "dedent";

// "$hello!"
dedent`
  $hello!
`;

// "\$hello!"
dedent.withOptions({ escapeSpecialCharacters: false })`
  $hello!
`;

// "$hello!"
dedent.withOptions({ escapeSpecialCharacters: true })`
  $hello!
`;

For more context, see πŸš€ Feature: Add an option to disable special character escaping.

License

MIT

Contributors

πŸ’™ This package was templated with create-typescript-app.

lernaendentjest-circus@lerna/filter-options@lerna/cli@lerna/command@lerna/create@lerna/projectweather-cli-today-is@megasaur/version@megasaur/add@megasaur/bootstrap@megasaur/cli@megasaur/command@megasaur/create@megasaur/filter-options@megasaur/import@megasaur/project@essent/lerna@ilscc/mrm-presetarchetype-librarycommit-cz-fixeasy-select-rn@biany-cli-dev/corereact-native-bluetooth2@lucat1/linaria@qcs/forest-status-extensiontestcafe-browser-provider-electron8discord-rest-apiwb-stories-frontend-libairscanairscan-examplereadytest-testcafebb-chatreact-native-esc-pos-sahaab@iamsquare/jest-match-object-close-to@borisovart/atol-kkt-module@frxf/frxfdeneme323112react-native-webpack-toolkit@steven-torres/jsxr@ntt_app/react-native-custom-notificationreact-native-covid-sdkzetan-test-testmillions-pc@aarnavtale/caxa@woofjs/clismiling-cli-practice@olivervorasai/sliderreact-native-printer-brothers@oda-cli-dev/coreimooc-ledng-dev@newhorizon-tech/dd-npm-package-templatereact-native-shekhar-bridge-testcogoportutils@pocketlesson/graphql-codegen-typescript-fixtures@vxc/vxlan-testwatwwilscanner@oiti/documentoscopy-react-nativequoc-test@dqjs/cli@infinitebrahmanuniverse/nolb-ded@inventorjs/core@moseeker/cli@linding-cli/core@sqh-cli/core@saaspe/componentsluminos-ui-coretestcafeweather-cli-96sklif-ui-kitsklif-api@everything-registry/sub-chunk-1459jawwy-sdkjawwy_gamification_releaseweather-cli-andi-k@314oner_npm/universal-components-libraryreact-native-sphereuisphereuijawwy_libraryreact-native-credit-card-pkgp149-tablesklif-uireact-native-jawwy_sample@compositive/plugin-hello@imooc-cli-dev-nana/coredirectory-helpersdiscord-dbmritz2rn-adyen-dropinrn-agora-ios-mdbdiffdbdiff-pg-upgradedrn-counter-demojrennsoh88-react-native-scroll-indicatorringcentral-widgetsrl-react-generic-searchdaylog
1.5.3

14 days ago

1.5.2

15 days ago

1.2.0

9 months ago

1.0.2

10 months ago

1.1.0

9 months ago

1.0.1

10 months ago

1.5.1

9 months ago

1.5.0

9 months ago

1.4.0

9 months ago

1.3.0

9 months ago

0.8.0-beta

10 months ago

1.0.0

10 months ago

0.7.0

7 years ago

0.6.0

8 years ago

0.5.0

8 years ago

0.4.0

9 years ago

0.3.0

9 years ago

0.2.2

9 years ago

0.2.1

9 years ago

0.2.0

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago