Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@_immo/return

_immo61AGPL-3.01.1.1

Return any value

readme

return-js

The practical way to return values

How to use

Just simply include the package in your project using npm i @_immo/return or yarn add @_immo/return and use the package as follows

const _return = require("@_immo/return");
const a = 1;
function() {
    _return(a);
}