UNPKG
closeheat-editor
Version:
latest (2.0.3)
2.0.3
2.0.2
2.0.1
2.0.0
1.6.11
1.6.10
1.6.9
1.6.8
1.6.7
1.6.6
1.6.5
1.6.4
1.6.3
1.6.2
1.6.1
1.6.0
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.4.2
1.4.1
1.4.0
1.3.0
1.2.0
1.1.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Edit deployed websites.
github.com/closeheat/editor
closeheat/editor
closeheat-editor
/
src
/
filesystem_history.coffee
13 lines
(9 loc)
•
214 B
text/coffeescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
_ =
require
'lodash'
module
.
exports
=
class
FilesystemHistory
@create
: ->
window
.
fs_history
= []
@write
: (file) ->
window
.
fs_history
.
push
(_.
cloneDeep
(file))
@last
: -> _.
last
(
window
.
fs_history
)