Code Monkey home page Code Monkey logo

async-str-replace's Introduction

async-str-replace npm size

Note: This package has been deprecated and will no longer receive updates. However, it is still perfectly functional.

This package is a simple string replace function that can handle both synchronous and asynchronous replace operations. It accepts one or more replacement objects and replaces all occurrences of their search string with their replace string in the provided string.

Installation

This function can be used in both Node.js and browser environments. You can install it using npm or yarn:

npm install async-str-replace

# or

yarn add async-str-replace

Usage

const asyncStrReplace = require("async-str-replace");

const string = "Hello, world!";

const replacements = [
  {
    search: "world",
    replace: "there",
  },
  {
    search: /o/g,
    replace: async () => {
      // Some async operation...
      return "O";
    },
  },
];

async function main() {
  const result = await asyncStrReplace(string, replacements);
  console.log(result); // "HellO, there!"
}

main();

Deprecated

Please note that this package is now deprecated in favor of str-async-replace. Although async-str-replace is still fully functional, we recommend using str-async-replace for new projects, as it offers additional features and a more intuitive API.

str-async-replace can be installed via npm:

npm install str-async-replace

Please note that async-str-replace and str-async-replace do not function identically. For information on how to use str-async-replace, please consult its documentation: https://www.npmjs.com/package/str-async-replace

License

This package is licensed under the MIT License. See the LICENSE file for details.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.