mirror of
https://gitee.com/dcloud/uni-preset-vue
synced 2025-04-06 13:53:07 +08:00
5 lines
150 B
JavaScript
5 lines
150 B
JavaScript
'use strict';
|
|
const ansiRegex = require('ansi-regex');
|
|
|
|
module.exports = input => typeof input === 'string' ? input.replace(ansiRegex(), '') : input;
|