Socket
Socket
Sign inDemoInstall

@01group/fxl

Package Overview
Dependencies
81
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.2 to 0.0.3

15

package.json
{
"name": "@01group/fxl",
"version": "0.0.2",
"version": "0.0.3",
"description": "fxl.js is a data-oriented JavaScript spreadsheet library. It provides a way to build spreadsheets using modular, lego-like blocks.",
"license": "Apache-2.0",
"homepage": "https://github.com/zero-one-group/fxl.js",
"dependencies": {
"tslib": "^2.0.0",
"exceljs": "^4.3.0",
"ts-results": "^3.3.0"
},
"keywords": [

@@ -15,10 +20,6 @@ "curried",

],
"homepage": "https://github.com/zero-one-group/fxl.js",
"license": "Apache-2.0",
"main": "./src/index.js",
"typings": "./src/index.d.ts",
"dependencies": {
"exceljs": "^4.3.0",
"ts-results": "^3.3.0"
},
"peerDependencies": {}
}
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
__exportStar(require("./lib/cells"), exports);
__exportStar(require("./lib/coords"), exports);
__exportStar(require("./lib/core"), exports);
__exportStar(require("./lib/higher-order-functions"), exports);
__exportStar(require("./lib/styles"), exports);
__exportStar(require("./lib/types"), exports);
__exportStar(require("./lib/validation"), exports);
const tslib_1 = require("tslib");
tslib_1.__exportStar(require("./lib/cells"), exports);
tslib_1.__exportStar(require("./lib/coords"), exports);
tslib_1.__exportStar(require("./lib/core"), exports);
tslib_1.__exportStar(require("./lib/higher-order-functions"), exports);
tslib_1.__exportStar(require("./lib/styles"), exports);
tslib_1.__exportStar(require("./lib/types"), exports);
tslib_1.__exportStar(require("./lib/validation"), exports);
//# sourceMappingURL=index.js.map
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.writeBinary = exports.writeXlsx = exports.readBinary = exports.readXlsx = void 0;
const tslib_1 = require("tslib");
const ExcelJS = require("exceljs");

@@ -50,3 +42,3 @@ const ts_results_1 = require("ts-results");

function readXlsx(fileName) {
return __awaiter(this, void 0, void 0, function* () {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
try {

@@ -75,3 +67,3 @@ const workbook = new ExcelJS.Workbook();

function readBinary(binary) {
return __awaiter(this, void 0, void 0, function* () {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
try {

@@ -163,3 +155,3 @@ const workbook = new ExcelJS.Workbook();

function writeXlsx(cells, fileName) {
return __awaiter(this, void 0, void 0, function* () {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
const workbook = toExcelWorkbook(cells);

@@ -187,3 +179,3 @@ if (workbook.ok) {

function writeBinary(cells) {
return __awaiter(this, void 0, void 0, function* () {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
const workbook = toExcelWorkbook(cells);

@@ -190,0 +182,0 @@ if (workbook.ok) {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc