Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@bsara/react-filter
Advanced tools
A simple React component used for array filtering.
NOTE: This component uses a for-loop for filtering rather than the native
Array
'sfilter
function. This means that filtering will be more performant (see jsperf test for details).
$ npm i --save @bsara/react-filter
import React from 'react';
import Filter from '@bsara/react-filter';
export default function MyComponent(props) {
return (
{/* ... */}
<Filter items={props.items} predicate={_predicate} render={(filteredItems) => (
// Render filtered items...
)} />
{/* ... */}
);
}
function _predicate(item, index, predicateArg) {
// Determine if item should be included in filtered list...
}
items ?Array
Array of items to be filtered and passed to render
prop.
render(filteredItems) !Function
- REQUIRED
Render function called after items
filtering is complete.
predicate(item, itemIndex[, predicateArg]) !Function
- REQUIRED
Function to be called for each item in items
. Return true
to include item
in the
resulting filtered items list. Return false
to exclude item
from the resulting
filtered items list.
predicateArg ?*
Parameter to be passed as an extra argument in predicate
function. This prop is not
required and is provided solely for convenience.
ISC License (ISC)
Copyright (c) 2018, Brandon D. Sara (http://bsara.pro/)
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1.0.0
FAQs
A simple React component used for array filtering.
The npm package @bsara/react-filter receives a total of 0 weekly downloads. As such, @bsara/react-filter popularity was classified as not popular.
We found that @bsara/react-filter 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.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.