新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
24 lines
684 B
JavaScript
24 lines
684 B
JavaScript
'use strict';
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
var isObject = require('es-object-atoms/isObject');
|
|
|
|
var CreateDataProperty = require('./CreateDataProperty');
|
|
|
|
var isPropertyKey = require('../helpers/isPropertyKey');
|
|
|
|
// // https://262.ecma-international.org/14.0/#sec-createdatapropertyorthrow
|
|
|
|
module.exports = function CreateDataPropertyOrThrow(O, P, V) {
|
|
if (!isObject(O)) {
|
|
throw new $TypeError('Assertion failed: Type(O) is not Object');
|
|
}
|
|
if (!isPropertyKey(P)) {
|
|
throw new $TypeError('Assertion failed: P is not a Property Key');
|
|
}
|
|
var success = CreateDataProperty(O, P, V);
|
|
if (!success) {
|
|
throw new $TypeError('unable to create data property');
|
|
}
|
|
};
|