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

@ulu/utils

Package Overview
Dependencies
Maintainers
0
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ulu/utils - npm Package Compare versions

Comparing version 0.0.16 to 0.0.17

3

CHANGELOG.md
# Change Log
## 0.0.17
- Fix mistake in extractMatchDetails
## 0.0.16

@@ -5,0 +8,0 @@

6

lib/string.js

@@ -153,3 +153,3 @@ /**

const startIndex = match.index;
const endIndex = matchIndex + matched.length;
const endIndex = startIndex + matched.length;
return {

@@ -159,4 +159,4 @@ matched,

endIndex,
before: str.slice(0, startIndex),
after: str.slice(endIndex)
before: string.slice(0, startIndex),
after: string.slice(endIndex)
};

@@ -163,0 +163,0 @@ } else {

{
"name": "@ulu/utils",
"version": "0.0.16",
"version": "0.0.17",
"description": "A collection of helpful utility functions for common JavaScript development and browser DOM manipulation tasks",

@@ -5,0 +5,0 @@ "keywords": [

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