文件操作 - Raw.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/csso/node_modules/css-tree/lib/syntax/node/Raw.js
编辑文件内容
import { WhiteSpace } from '../../tokenizer/index.js'; function getOffsetExcludeWS() { if (this.tokenIndex > 0) { if (this.lookupType(-1) === WhiteSpace) { return this.tokenIndex > 1 ? this.getTokenStart(this.tokenIndex - 1) : this.firstCharOffset; } } return this.tokenStart; } export const name = 'Raw'; export const structure = { value: String }; export function parse(startToken, consumeUntil, excludeWhiteSpace) { const startOffset = this.getTokenStart(startToken); let endOffset; this.skipUntilBalanced(startToken, consumeUntil || this.consumeUntilBalanceEnd); if (excludeWhiteSpace && this.tokenStart > startOffset) { endOffset = getOffsetExcludeWS.call(this); } else { endOffset = this.tokenStart; } return { type: 'Raw', loc: this.getLocation(startOffset, endOffset), value: this.substring(startOffset, endOffset) }; } export function generate(node) { this.tokenize(node.value); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件