protected function JSMin::isAlphaNum in Javascript Aggregator 5
Same name and namespace in other branches
- 6 jsmin.php \JSMin::isAlphaNum()
1 call to JSMin::isAlphaNum()
- JSMin::min in ./
jsmin.php
File
- ./
jsmin.php, line 159
Class
Code
protected function isAlphaNum($c) {
return ord($c) > 126 || $c === '\\' || preg_match('/^[\\w\\$]$/', $c) === 1;
}