Replace "locks" with the original characters
Parameters
string $js The string to unlock:
Return value
bool
File
- 
              advagg_js_minify/
jshrink.inc, line 616  
Class
- Minifier
 - Minifier
 
Namespace
JShrinkCode
protected function unlock($js) {
    if (empty($this->locks)) {
        return $js;
    }
    foreach ($this->locks as $lock => $replacement) {
        $js = str_replace($lock, $replacement, $js);
    }
    return $js;
}