You are here

public function JSTokenizer::currentToken in Javascript Aggregator 6

1 call to JSTokenizer::currentToken()
JSTokenizer::mustMatch in ./jsminplus.php

File

./jsminplus.php, line 1821

Class

JSTokenizer

Code

public function currentToken() {
  if (!empty($this->tokens)) {
    return $this->tokens[$this->tokenIndex];
  }
}