New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

timezone-js-ts

Package Overview
Dependencies
Maintainers
0
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

timezone-js-ts - npm Package Compare versions

Comparing version 1.1.12 to 1.1.13

39

dist/index.js
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.getCurrentTime = getCurrentTime;
exports.getAllZones = getAllZones;
const path = __importStar(require("path"));
const fs = __importStar(require("fs"));
function getCurrentTime(timezone) {

@@ -19,3 +54,5 @@ const date = new Date();

function getAllZones() {
return "Package's functions is on development process";
const actualPath = path.resolve(__dirname, '../all_timezone_lists.json');
const data = fs.readFileSync(actualPath, 'utf-8');
return data;
}

2

package.json
{
"name": "timezone-js-ts",
"version": "1.1.12",
"version": "1.1.13",
"description": "",

@@ -5,0 +5,0 @@ "main": "./dist/index.js",

@@ -0,1 +1,5 @@

import * as path from "path";
import * as fs from "fs";
export function getCurrentTime(timezone: string) {

@@ -16,3 +20,5 @@ const date = new Date();

export function getAllZones() {
return "Package's functions is on development process";
const actualPath = path.resolve(__dirname, '../all_timezone_lists.json');
const data = fs.readFileSync(actualPath, 'utf-8');
return data;
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc