文件操作 - Raw.cjs
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/csso/node_modules/css-tree/cjs/syntax/node/Raw.cjs
编辑文件内容
'use strict'; const types = require('../../tokenizer/types.cjs'); function getOffsetExcludeWS() { if (this.tokenIndex > 0) { if (this.lookupType(-1) === types.WhiteSpace) { return this.tokenIndex > 1 ? this.getTokenStart(this.tokenIndex - 1) : this.firstCharOffset; } } return this.tokenStart; } const name = 'Raw'; const structure = { value: String }; 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) }; } function generate(node) { this.tokenize(node.value); } exports.generate = generate; exports.name = name; exports.parse = parse; exports.structure = structure;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件