![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
blear.classes.class
Advanced tools
.alias(aliasName, originalName)
原型方法的别名。
var AA = Class.extend({
constructor: function () {},
a: function () {}
});
AA.alias('a2', 'a');
// AA.prototype.a2 === AA.prototype.a
.sole()
生成唯一的随机值,用于原型受保护的方法、属性,防止继承类将其覆盖。
var AA = Class.extend({
constructor: function () {
this[_protectedProperty] = 123;
this[_protectedMethod] = function () {};
},
});
var _protectedProperty = AA.sole();
var _protectedMethod = AA.sole();
.extend(prototype)
基于当前类扩展新的子类。
var AA = Class.extend({
constructor: function () {}
});
var BB = AA.extend({
constructor: function () {}
});
// BB 继承了 AA
.parent(instance, [arg1, arg2])
、parent[method](instance, [arg1, arg2])
var AA = Class.extend({
constructor: function () {},
a: function () {}
});
var BB = AA.extend({
constructor: function () {
// 调用父类构造函数
BB.parent(this);
}
});
BB.protyotype.b = function () {
// 调用父类原型 a 方法
BB.parent.a(this);
};
.method(protoName, factory)
var A = Class.extend({
constructor: function () {}
});
A.method('get', function () {
return 'get';
});
.ify(constructor)
转换构造函数,添加 extend 方法
var A = function(){};
A = Class.ify(A);
A.extend(...);
FAQs
We found that blear.classes.class demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.