All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
11 lines
283 B
JavaScript
11 lines
283 B
JavaScript
'use strict'
|
|
|
|
var unicodePunctuationRegex = require('../constant/unicode-punctuation-regex.js')
|
|
var regexCheck = require('../util/regex-check.js')
|
|
|
|
// In fact adds to the bundle size.
|
|
|
|
var unicodePunctuation = regexCheck(unicodePunctuationRegex)
|
|
|
|
module.exports = unicodePunctuation
|