UNPKG

@litexa/core

Version:

Litexa, a programming language for writing Alexa skills

13 lines (11 loc) 398 B
/* * ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 * ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ export const Time = { serverTimeGetDay: (date = new Date()) => { return date.getDay(); } };