Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
import { d } from 'destructio';
const hero = {
name: 'Batman',
realName: 'Bruce Wayne',
};
const { name, realName } = d('Hero', hero);
/*
Adding a string as the first param lets you immediately
know what you are destructuring, and helps other people
working on your code or you coming back after a while.
By adding `log-` in front of your naming the data gets automatically logged
to the console this gets rid of all the console.log's we used to write to debug things,
after you succefully debugt your code simply remove the log- again.
*/
const { name, realName } = d('log-Hero', hero);
import React from 'react';
import { d } from 'destructio';
function NumberList(props) {
// props gets logged to the console because of log- in the naming.
const { numbers } = d('log-Props', props);
const listItems = numbers.map((number) => <li>{number}</li>);
return <ul>{listItems}</ul>;
}
export default NumberList;
FAQs
```javascript import { d } from 'destructio';
The npm package destructio receives a total of 13 weekly downloads. As such, destructio popularity was classified as not popular.
We found that destructio 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.