New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@slidy/easing

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@slidy/easing - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+1
-1
dist/types.d.ts
/** Easing function.
* @param t value from 0 to 1
* @returns value from 0 to 1
* @default easeInOutCubic
* @default linear
* @see https://easings.net
*/
export declare type Easing = (t: number) => number;
{
"name": "@slidy/easing",
"version": "1.0.0",
"version": "1.0.1",
"description": "Simple easing functions for inertion scrolling",

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

@@ -35,2 +35,14 @@ [![npm version](https://img.shields.io/npm/v/@slidy/easing)](https://www.npmjs.com/package/@slidy/easing)

```ts
/** Easing function.
* @param t value from 0 to 1
* @returns value from 0 to 1
* @default linear
* @see https://easings.net
*/
type Easing = (t: number) => number;
```
### MJS/CJS module import

@@ -37,0 +49,0 @@