Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. import * as CodeMirror from 'codemirror'
  2. import 'codemirror/addon/fold/indent-fold.js' # should add `fold` object to `CodeMirror`
  3.  
  4. console.log typeof CodeMirror ## 'object'
  5. console.log typeof CodeMirror.fold ## 'undefined'
  6. console.log typeof CodeMirror.default ## 'function'
  7.  
  8. ## Work-around:
  9. console.log typeof CodeMirror.default.fold ## 'object'
  10.  
  11. import CodeMirror from 'codemirror'
  12. import 'codemirror/addon/fold/indent-fold.js' # should add `fold` object to `CodeMirror`
  13.  
  14. console.log typeof CodeMirror ## 'function'
  15. console.log typeof CodeMirror.fold ## 'object'
  16. console.log typeof CodeMirror.default ## 'undefined'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement