@litexa/core
Version:
Litexa, a programming language for writing Alexa skills
29 lines (22 loc) • 640 B
text/coffeescript
###
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
###
module.exports = class DBInterface
constructor: ->
@variables = {}
@written = false
@initialized = false
isInitialized: ->
@initialized
initialize: ->
@initialized = true
read: (name) ->
@variables[name]
write: (name, value) ->
@written = true
@variables[name] = value
finalize: (cb) ->
setTimeout cb, 1