You are here

protected function JSMin::peek in Javascript Aggregator 5

Same name and namespace in other branches
  1. 6 jsmin.php \JSMin::peek()
1 call to JSMin::peek()
JSMin::next in ./jsmin.php

File

./jsmin.php, line 283

Class

JSMin
jsmin.php - PHP implementation of Douglas Crockford's JSMin.

Code

protected function peek() {
  $this->lookAhead = $this
    ->get();
  return $this->lookAhead;
}