Babel 中文文档
  • 印记中文
  • 文档
  • 配置
  • 试用
  • 视频
  • 博客
  • 赞助
  • 团队
  • GitHub
Edit

@babel/plugin-transform-object-assign

Example

In

Object.assign(a, b);

Out

var _extends = ...;

_extends(a, b);

Caveats

  • Will only work with code of the form Object.assign or Object['assign']. The following patterns are not supported:

    var { assign } = Object;
    var assign = Object.assign;
    

Installation

npm install --save-dev @babel/plugin-transform-object-assign

Usage

With a configuration file (Recommended)

{
  "plugins": ["@babel/plugin-transform-object-assign"]
}

Via CLI

babel --plugins @babel/plugin-transform-object-assign script.js

Via Node API

require("@babel/core").transformSync("code", {
  plugins: ["@babel/plugin-transform-object-assign"],
});
  • Example
  • Caveats
  • Installation
  • Usage
    • With a configuration file (Recommended)
    • Via CLI
    • Via Node API
Babel 中文文档
文档
学习 ES2015
社区
视频用户Stack OverflowSlack 频道Twitter
更多
博客GitHub 组织GitHub 仓库Website 仓库旧版网址 6.x旧版网址 5.x