Code Duplication    Length = 5-5 lines in 2 locations

projects/plugins/jetpack/modules/custom-css/custom-css/preprocessors/lessc.inc.php 1 location

@@ 3489-3493 (lines=5) @@
3486
		if ($eatWhitespace === null) $eatWhitespace = $this->eatWhiteDefault;
3487
3488
		$r = '/'.$regex.($eatWhitespace && !$this->writeComments ? '\s*' : '').'/Ais';
3489
		if (preg_match($r, $this->buffer, $out, null, $this->count)) {
3490
			$this->count += strlen($out[0]);
3491
			if ($eatWhitespace && $this->writeComments) $this->whitespace();
3492
			return true;
3493
		}
3494
		return false;
3495
	}
3496

projects/plugins/jetpack/modules/custom-css/custom-css/preprocessors/scss.inc.php 1 location

@@ 3967-3971 (lines=5) @@
3964
		if (is_null($eatWhitespace)) $eatWhitespace = $this->eatWhiteDefault;
3965
3966
		$r = '/'.$regex.'/Ais';
3967
		if (preg_match($r, $this->buffer, $out, null, $this->count)) {
3968
			$this->count += strlen($out[0]);
3969
			if ($eatWhitespace) $this->whitespace();
3970
			return true;
3971
		}
3972
		return false;
3973
	}
3974