
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
______
( / _/_
/-- ( / _ __
(/____//_)_(__/ (_(_)
Estro is a tiny Extended String Object helper enables you to get more out of the string class.
Usage:
var string = "Hello";
if (!string.isEmpty()) alert(string);
if (string.equals("Hello")) alert("Hi :D!");
if (string.equalsIgnoreCase("hello")) alert("Hello again!");
if (string.startsWith("H")) alert("Starts with H!");
if (string.endsWith("ello")) alert("Ends with ello!");
if (string.contains("e")) alert(string + " contains an e! Who knew?");
alert(" trimmed ".trim());
You can view a demo here.
Estro contains the following string extensions (Unless they already exist; Estro is meant to be un-obtrusive):
Hopefully, in the future I will extend this to work with other objects and not just strings.
Copyright Nijikokun 2011 nijikokun@gmail.com
GNUv3 Affero License http://www.gnu.org/licenses/agpl-3.0.html
FAQs
Extended String Object, Gain more from your strings.
The npm package Estro receives a total of 1 weekly downloads. As such, Estro popularity was classified as not popular.
We found that Estro demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.