0.0.6 • Published 4 years ago

durat v0.0.6

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Durat

Created with ❤️ by @FilippoFonseca

Logo

What is this?

Durat is a functional JS/TS open-source Node framework for opening the possibilities of what you can do with text.

Part of an experiment in the fields of universal grammar, language connotation, and linguistics.

Initialization

Install Durat:

npm i durat
// or
yarn add durat

Initialize it in your project:

import Durat from "durat";

// declare an instance of the class Durat and assign it to a variable, as such:

const durat = new Durat();

// now you can use Durat's functionality in your code, as such:

const timeToRead = (input: string) => {
  const result = Durat.readTime(input);

  return result;
};

Let's test the output of our timeToRead function, which we initialized above:

console.log(
  timeToRead("This is an example of text you would pass in to this method.")
);

Output in console: 6

Use

Read more of the official Durat documentation to understand more about how it works/how to use it by clicking here.

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago