Ben
- 活动总数 14
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 2
- 订阅数 4
-
Ben 创建了一个帖子, 已回答Refactoring JavaScript Barrel File
test.jsconst {bar, foo} = require('./group1'); const {oof, rab} = require('./group2'); foo(); bar(); oof(); rab();group1/index.jsconst bar = require('./bar') const foo = require('./foo') module.e... -
-
Ben 创建了一个帖子, AWS Lambda with Layer Imports
I have a project with AWS Lambdas that share an AWS Lambda Layer. When I import functions from the Layer, IntelliJ isn't able to find the source and provide intellisense. IntelliJ could look at th... -
Ben 创建了一个帖子, JSX formatting issue - Spaces are removed in some cases
I found an issue with the code formatter and JSX. This is the state before formatting. import React from 'react';class Sample extends React.Component { render() { return ( <di... -
-
-
-
Ben 创建了一个帖子, Reformat Code Option. Sort by function names.
Ext.regController("dashboard", { goToShoppingCart:function() { Ext.dispatch({ controller:"shoppingCart", action:"loadCart" }); }, ...