aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/lib/_wireh.js
blob: ca77e65c5690a13c14bdbb5322e4ee36499e3e8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'

const FnBase = require('./_base')

function FnWireH (pico, x, y) {
  FnBase.call(this, pico, x, y)

  this.name = 'wire-h'
  this.glyph = '-'
  this.info = 'Send data along the wire, horizontally.'
}

module.exports = FnWireH