public function JSMin::__construct in Javascript Aggregator 5
Same name and namespace in other branches
- 6 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);
}