Results 7 comments of cuining

String.prototype.reverse=function(){return this.split('').reverse().join('')}

function isEmpty(obj){ for (var p in obj) { return false; } return true; }

@Druux It work with React. React Native maybe need special tags, such as `View` and `Text`.

@Druux if you are willing to do this, i'm super glad to take it 😄

componentDidMount() { const cm = this.refs.editor.getCodeMirror(); const { width, height } = this.props; // set width & height cm.setSize(width, height); } render() { return ( this.props.onChange(value)} options={options} /> ); }...