新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
29 lines
990 B
JavaScript
29 lines
990 B
JavaScript
'use strict';
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
|
|
var DefinePropertyOrThrow = require('./DefinePropertyOrThrow');
|
|
var HasOwnProperty = require('./HasOwnProperty');
|
|
var IsExtensible = require('./IsExtensible');
|
|
var IsNonNegativeInteger = require('./IsNonNegativeInteger');
|
|
|
|
// https://262.ecma-international.org/11.0/#sec-setfunctionlength
|
|
|
|
module.exports = function SetFunctionLength(F, length) {
|
|
if (typeof F !== 'function' || !IsExtensible(F) || HasOwnProperty(F, 'length')) {
|
|
throw new $TypeError('Assertion failed: `F` must be an extensible function and lack an own `length` property');
|
|
}
|
|
if (typeof length !== 'number') {
|
|
throw new $TypeError('Assertion failed: `length` must be a Number');
|
|
}
|
|
if (!IsNonNegativeInteger(length)) {
|
|
throw new $TypeError('Assertion failed: `length` must be an integer >= 0');
|
|
}
|
|
return DefinePropertyOrThrow(F, 'length', {
|
|
'[[Configurable]]': true,
|
|
'[[Enumerable]]': false,
|
|
'[[Value]]': length,
|
|
'[[Writable]]': false
|
|
});
|
|
};
|