public function JSMin::__construct in Javascript Aggregator 6
Same name and namespace in other branches
- 5 jsmin.php \JSMin::__construct()
File
- ./
jsmin.php, line 69
Class
Code
public function __construct($input) {
$this->input = str_replace("\r\n", "\n", $input);
$this->inputLength = strlen($this->input);
}