1.0.1 • Published 2 years ago

@j2.trappy/didyoumean v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Did you mean, package. You can use it on the browser.

Require

  • Asynchronous
    var didYouMean = require("./lib/didUMean");

    didYouMean("j2trappy", [
        "j2.trappy",
        "j3.trappy"
    ]).then(console.log); // j2.trappy
  • Synchronous
    console.log(didYouMean.sync("j2trappy", [
        "j2.trappy",
        "j3.trappy"
    ])); // j2.trappy

Import

  • Asynchronous
    import didYouMean from "./lib/didUMean";

    didYouMean("j2trappy", [
        "j2.trappy",
        "j3.trappy"
    ]).then(console.log); // j2.trappy
  • Synchronous
    console.log(didYouMean.sync("j2trappy", [
        "j2.trappy",
        "j3.trappy"
    ])); // j2.trappy

Realeses

  • 1.0.0 Plubishing the man's package to everyone.

-1.0.1 Fixing some problems with browser.