文件操作 - TypedArrayElementType.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/es-abstract/2022/TypedArrayElementType.js
编辑文件内容
'use strict'; var $SyntaxError = require('es-errors/syntax'); var $TypeError = require('es-errors/type'); var whichTypedArray = require('which-typed-array'); // https://262.ecma-international.org/13.0/#sec-typedarrayelementtype var tableTAO = require('./tables/typed-array-objects'); module.exports = function TypedArrayElementType(O) { var type = whichTypedArray(O); if (!type) { throw new $TypeError('Assertion failed: `O` must be a TypedArray'); } var result = tableTAO.name['$' + type]; if (typeof result !== 'string') { throw new $SyntaxError('Assertion failed: Unknown TypedArray type `' + type + '`'); } return result; };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件