UNPKG

serverless-artillery

Version:

A serverless performance testing tool. `serverless` + `artillery` = crush. a.k.a. Orbital Laziers [sic]

9 lines (7 loc) 191 B
'use strict'; const stringWidth = require('string-width'); module.exports = input => { let max = 0; for (const s of input.split('\n')) max = Math.max(max, stringWidth(s)); return max; };