mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-mockapi.git
synced 2026-08-22 05:54:28 +00:00
6 lines
153 B
JavaScript
6 lines
153 B
JavaScript
'use strict';
|
|
const stringWidth = require('string-width');
|
|
|
|
module.exports = input => Math.max.apply(null, input.split('\n').map(x => stringWidth(x)));
|
|
|