
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
ember-cli-sort-by-plus
Advanced tools
An ember.js computed property and helper for sortBy with natural sorting.
This is my first Ember CLI addon. Created as a learning experiment so not sure how useful it will be to you. Feel free to provide feedback though!
The sort-by-plus add-on exposes a sortByPlus
computed property which allows you to sort arrays
similary to the sort
computed property, but adds support for natural sorting without a custom
sort function (for cases like Ember Data when IDs are strings). You also don't have to define the sort properties as a different property on your object.
import Ember from 'ember';
import sortByPlus from 'ember-cli-sort-by-plus';
const { computed: { sort }} = Ember;
var Thing = Ember.Object.extend({
plusSort: sortByPlus('model', 'position:desc:natural', 'id:asc:natural'),
modelSortProperties: ['position:desc', 'id:asc'],
tradSort: sort('model', 'modelSortProperties')
});
var thing = Thing.create({
model: [
{ id: "1", position: 1 }
{ id: "2", position: 0 },
{ id: "10", position: 0 }
]
});
thing.get('plusSort').mapBy('id') // => ["1", "2", "10"]
thing.get('tradSort').mapBy('id') // => ["1", "10", "2"]
ember install ember-cli-sort-by-helpers
git clone <repository-url>
this repositorycd ember-cli-sort-by-plus
npm install
bower install
ember serve
npm test
(Runs ember try:each
to test your addon against multiple Ember versions)ember test
ember test --server
ember build
For more information on using ember-cli, visit http://ember-cli.com/.
FAQs
An ember.js computed property and helper for sortBy with natural sorting.
We found that ember-cli-sort-by-plus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.