I have a list of string in node.js
var listStr = ["helloworld","helloworld1","helloworld2","somethingelse"]
I want to find all strings which meet some regex. For example, for the regex: *world*, I would get the next strings: "helloworld","helloworld1","helloworld2"
there is any npm package or function which get a list of strings and regex, and return the strings which meet the regex?