1.1.0 • Published 1 year ago

convert-from-text-to-morse-jorge-torrez-leon v1.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

Bootcamp V3

Convert from text to morse

npm.io

npm.io npm.io npm.io npm.io npm.io npm.io

Features

  • Convert text to morse code

Installing

Package manager

Using npm:

$ npm install convert-from-text-to-morse-jorge-torrez-leon

Once the package is installed, you can import the library using import or require approach:

Printing directly from the function:

const convertFromTextToMorse = require('convert-from-text-to-morse-jorge-torrez-leon');

console.log(convertFromTextToMorse('Hello World'));

Or save it in a variable for later use:

const convertFromTextToMorse = require('convert-from-text-to-morse-jorge-torrez-leon');

let morse = convertFromTextToMorse('Hello World');

console.log(morse);