UNPKG

is-punctuation

Version:

Returns true if the given string is punctuation characters.

8 lines (5 loc) 189 B
'use strict'; var punctuationRegex = require('punctuation-regex'); module.exports = function(str, extended) { return typeof str === 'string' && punctuationRegex(extended).test(str); };