1.0.1 • Published 1 year ago

@zjtakato/delegates v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago
const delegate = require('@zjtakato/delegates');

 const obj = {};
  obj.request = {
    get type() {
      return 'type/html';
    },
  };
  // 访问obj的type属性会从obj的request对象属性上面去获取
  delegate(obj, 'request').getter('type');
  console.log(obj.type) // type/html
1.0.1

1 year ago

1.0.0

1 year ago