We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a23c64 commit 5e1ba31Copy full SHA for 5e1ba31
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "jspython-interpreter",
3
- "version": "2.0.15",
+ "version": "2.0.16",
4
"description": "JSPython is a javascript implementation of Python language that runs within web browser or NodeJS environment",
5
"keywords": [
6
"python",
src/initialScope.ts
@@ -2,7 +2,7 @@ import { parseDatetimeOrNull } from "./common/utils";
export const INITIAL_SCOPE = {
jsPython(): string {
- return [`JSPython v2.0.12`, "(c) 2021 FalconSoft Ltd. All rights reserved."].join('\n')
+ return [`JSPython v2.0.16`, "(c) 2021 FalconSoft Ltd. All rights reserved."].join('\n')
},
7
dateTime: (str: number | string | any = null) => parseDatetimeOrNull(str) || new Date(),
8
range: range,
0 commit comments