Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ephox/katamari

Package Overview
Dependencies
Maintainers
1
Versions
97
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ephox/katamari - npm Package Compare versions

Comparing version 2.1.8 to 2.1.9

2

lib/main/ts/ephox/katamari/api/Arr.js

@@ -220,3 +220,3 @@ import { Option } from './Option';

var last = function (xs) { return xs.length === 0 ? Option.none() : Option.some(xs[xs.length - 1]); };
var from = Type.isFunction(Array.from) ? Array.from : function (x) { return Array.prototype.slice.call(null, x); };
var from = Type.isFunction(Array.from) ? Array.from : function (x) { return slice.call(x); };
export default {

@@ -223,0 +223,0 @@ map: map,

{
"name": "@ephox/katamari",
"version": "2.1.8",
"version": "2.1.9",
"description": "Basic data type library",

@@ -5,0 +5,0 @@ "repository": {

@@ -261,3 +261,3 @@ import { Option } from './Option';

const from: <T = any>(x: ArrayLike<T>) => T[] = Type.isFunction(Array.from) ? Array.from : (x) => Array.prototype.slice.call(null, x)
const from: <T = any>(x: ArrayLike<T>) => T[] = Type.isFunction(Array.from) ? Array.from : (x) => slice.call(x)

@@ -264,0 +264,0 @@ export default {

Sorry, the diff of this file is not supported yet

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