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

@hsds/utils-sass

Package Overview
Dependencies
Maintainers
6
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hsds/utils-sass - npm Package Compare versions

Comparing version 5.2.1 to 7.0.0

index.cjs

24

CHANGELOG.md

@@ -5,4 +5,26 @@ # Changelog

### [5.2.1](https://github.com/helpscout/hsds/compare/utils-sass-5.2.0...utils-sass-5.2.1) (2022-08-25)
# [7.0.0](https://github.com/helpscout/hsds/compare/v6.0.0...v7.0.0) (2023-01-12)
# [6.0.0](https://github.com/helpscout/hsds/compare/v5.0.0...v6.0.0) (2023-01-12)
# [5.0.0](https://github.com/helpscout/hsds/compare/v4.0.0...v5.0.0) (2023-01-12)
### Bug Fixes
* **workspace:** remove esm module from projects ([829cc37](https://github.com/helpscout/hsds/commit/829cc3795f54a8bcfbc0c45b5bc36bd17463bf54))
### Features
* **workspace:** improves versioning packages ([b836826](https://github.com/helpscout/hsds/commit/b836826d549aeb7295498f1091c783136079f134))
### [5.2.1](https://github.com/helpscout/hsds/compare/utils-sass-5.2.0...utils-sass-5.2.1) (2022-08-29)
## [5.2.0](https://github.com/helpscout/hsds/compare/utils-sass-5.1.0...utils-sass-5.2.0) (2022-08-18)

@@ -9,0 +31,0 @@

10

package.json
{
"name": "@hsds/utils-sass",
"version": "5.2.1",
"main": "./index.cjs.js",
"module": "./index.esm.js",
"typings": "./index.d.ts",
"version": "7.0.0",
"main": "./index.cjs",
"type": "commonjs",
"types": "./index.d.ts",
"dependencies": {
"lodash.isplainobject": "^4.0.6"
"lodash.isplainobject": "4.0.6"
},
"peerDependencies": {}
}

@@ -5,7 +5,4 @@ "use strict";

exports.forEach = void 0;
var _lodash = _interopRequireDefault(require("lodash.isplainobject"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/**

@@ -22,16 +19,11 @@ * A helper function that works like Sass' @for.

}
if (typeof callback !== 'function') return '';
if (Array.isArray(list)) {
return list.map(callback).join(' ');
}
if ((0, _lodash.default)(list)) {
return Object.keys(list).map((key, index) => callback(key, list[key], index)).join(' ');
}
return '';
};
exports.forEach = forEach;
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