David Rodenas
David Rodenas
Given the next case: ``` javascript // ./app.js require('./app.css'); var component = require('component'); // do something with component ``` ``` javascript // component/index.js require('./component.css'); module.exports = // define something ```...
It is great to suggest people to write tests, it is really a good idea, but I think that it is not enough. From my experience working with other coders...
Although it seems that: ```javascript const last = array.lastItem; const last = array.item(-1); ``` both are equivalent, they are not: ```javascript array.lastItem = newValue; array.item(-1) = newValue; // it does...
Hi, I do not like to ask for features, I believe that I should do it by myself, but I am not yet acquitted building these technologies. But I want...
Currently, when we are using autoBindSteps, when a step is failing the output looks like: ``` Scenario "List products with no products" has 2 step(s) in the feature file, but...
Is it possible to create elements _stacked_ horizontally? (with line wrap when required) ex: ``` javascript var dd = { content: [ 'can pdfmake layout two images side by side?',...
### Environment 1. `node -v`: v8.1.0 or v6.10.2 2. `npm -v`: 5.0.3 or v5.4.1 4. `npm ls react-scripts` (if you haven’t ejected): (empty) 1. Operating system: MacOS Sierra 10.12.6 2....