New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

norse

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

norse

convert morse to timing information

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

norse

Build Status

convert morse code characters into timings

example

var norse = require('norse'),
    morse = require('morse-stream'),
    flashlight = require('fake-light-flashing-module'),
    fs = require('fs')

fs.createReadStream('goosebumps.txt')
  .pipe(morse())
  .pipe(norse(100)) // optional time unit parameter, defaults to 500
  .pipe(flashlight()) // pretend this flashes a light based on timing

another example

var norse = require('norse'),
    concat = require('concat-stream'),
    fs = require('fs')

fs.createReadStream('sos-in-morse-code.txt')
  .pipe(norse(1))
  .pipe(concat(display_timings))

function display_timings(timings) {
  console.log(timings)
  // [1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 3, 3, 1, 1, 1, 1, 1, 7]
}

notes

emits arrays for timing as [time_on, time_off]

accepts a stream of words, with letters separated by space. dots should be represented with '.' and dashes by either '-' or '_'. For example, SOS could be represented by '... --- ...'.

as per Morse code wikipedia entry dots and times between elements are one time unit in length. dashes and times between letters are three time units in length. time between words is seven time units in length.

license

MIT

Keywords

morse

FAQs

Package last updated on 04 May 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts