aboutsummaryrefslogtreecommitdiffhomepage
path: root/desktop/core/lib/_wirev.js
blob: a1e279a3eb3872a46d79c021262a52ac9f26e1dd (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-v'
  this.glyph = '|'
  this.info = 'Send data along the wire, vertically.'
}

module.exports = FnWireH