UNPKG

@writ/utils

Version:
10 lines (9 loc) 237 B
'use strict'; /** * 校验是否为中国大陆传真或固定电话号码 * @param {string} str */ function isFax(str) { return /^([0-9]{3,4})?[0-9]{7,8}$|^([0-9]{3,4}-)?[0-9]{7,8}$/.test(str); } module.exports = isFax;