UNPKG

bot18

Version:

A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f

13 lines (9 loc) 284 B
'use strict'; const indentString = require('indent-string'); const StringComponent = require('../string-component'); class Indent extends StringComponent { renderString(children) { return indentString(children, this.props.size, this.props.indent); } } module.exports = Indent;