6.0.0 • Published 5 years ago

@lyo/lodash-decorators v6.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

@lyo/lodash-decorators

A browser-compatible version of lodash-decorators built automatically with Lyo.

Version Build Hits

Usage

In a browser

<script src="https://cdn.jsdelivr.net/npm/@lyo/lodash-decorators"></script>

<script>
  lodashDecorators.DecoratorConfig(foo, bar, baz);
  lodashDecorators.InternalDecoratorFactory();
  lodashDecorators.After(foo);
  lodashDecorators.after(foo);
  lodashDecorators.default();
  lodashDecorators.AfterAll(foo);
  lodashDecorators.afterAll(foo);
  lodashDecorators.Ary(foo);
  lodashDecorators.ary(foo);
  lodashDecorators.Attempt();
  lodashDecorators.attempt();
  lodashDecorators.Before(foo);
  lodashDecorators.before(foo);
  lodashDecorators.BeforeAll(foo);
  lodashDecorators.beforeAll(foo);
  lodashDecorators.Bind();
  lodashDecorators.bind();
  lodashDecorators.BindAll(foo);
  lodashDecorators.bindAll(foo);
  lodashDecorators.Curry();
  lodashDecorators.curry();
  lodashDecorators.CurryAll();
  lodashDecorators.curryAll();
  lodashDecorators.CurryRight();
  lodashDecorators.curryRight();
  lodashDecorators.CurryRightAll();
  lodashDecorators.curryRightAll();
  lodashDecorators.Debounce(foo, bar);
  lodashDecorators.debounce(foo, bar);
  lodashDecorators.DebounceAll(foo, bar);
  lodashDecorators.debounceAll(foo, bar);
  lodashDecorators.Defer();
  lodashDecorators.defer();
  lodashDecorators.Delay(foo);
  lodashDecorators.delay(foo);
  lodashDecorators.Flip(foo);
  lodashDecorators.flip(foo);
  lodashDecorators.Flow();
  lodashDecorators.flow();
  lodashDecorators.FlowRight();
  lodashDecorators.flowRight();
  lodashDecorators.Memoize();
  lodashDecorators.memoize();
  lodashDecorators.MemoizeAll();
  lodashDecorators.memoizeAll();
  lodashDecorators.Mixin();
  lodashDecorators.mixin();
  lodashDecorators.Negate();
  lodashDecorators.negate();
  lodashDecorators.Once();
  lodashDecorators.once();
  lodashDecorators.OverArgs();
  lodashDecorators.overArgs();
  lodashDecorators.Partial();
  lodashDecorators.partial();
  lodashDecorators.PartialRight();
  lodashDecorators.partialRight();
  lodashDecorators.Rearg(foo);
  lodashDecorators.rearg(foo);
  lodashDecorators.Rest();
  lodashDecorators.rest();
  lodashDecorators.Spread();
  lodashDecorators.spread();
  lodashDecorators.Tap();
  lodashDecorators.tap();
  lodashDecorators.Throttle();
  lodashDecorators.throttle();
  lodashDecorators.ThrottleGetter();
  lodashDecorators.throttleGetter();
  lodashDecorators.ThrottleSetter();
  lodashDecorators.throttleSetter();
  lodashDecorators.ThrottleAll(foo, bar);
  lodashDecorators.throttleAll(foo, bar);
  lodashDecorators.Unary();
  lodashDecorators.unary();
  lodashDecorators.Wrap(foo);
  lodashDecorators.wrap(foo);
</script>

In Node.js

# Install
npm i @lyo/lodash-decorators
const lodashDecorators = require('@lyo/lodash-decorators')

lodashDecorators.DecoratorConfig(foo, bar, baz);
lodashDecorators.InternalDecoratorFactory();
lodashDecorators.After(foo);
lodashDecorators.after(foo);
lodashDecorators.default();
lodashDecorators.AfterAll(foo);
lodashDecorators.afterAll(foo);
lodashDecorators.Ary(foo);
lodashDecorators.ary(foo);
lodashDecorators.Attempt();
lodashDecorators.attempt();
lodashDecorators.Before(foo);
lodashDecorators.before(foo);
lodashDecorators.BeforeAll(foo);
lodashDecorators.beforeAll(foo);
lodashDecorators.Bind();
lodashDecorators.bind();
lodashDecorators.BindAll(foo);
lodashDecorators.bindAll(foo);
lodashDecorators.Curry();
lodashDecorators.curry();
lodashDecorators.CurryAll();
lodashDecorators.curryAll();
lodashDecorators.CurryRight();
lodashDecorators.curryRight();
lodashDecorators.CurryRightAll();
lodashDecorators.curryRightAll();
lodashDecorators.Debounce(foo, bar);
lodashDecorators.debounce(foo, bar);
lodashDecorators.DebounceAll(foo, bar);
lodashDecorators.debounceAll(foo, bar);
lodashDecorators.Defer();
lodashDecorators.defer();
lodashDecorators.Delay(foo);
lodashDecorators.delay(foo);
lodashDecorators.Flip(foo);
lodashDecorators.flip(foo);
lodashDecorators.Flow();
lodashDecorators.flow();
lodashDecorators.FlowRight();
lodashDecorators.flowRight();
lodashDecorators.Memoize();
lodashDecorators.memoize();
lodashDecorators.MemoizeAll();
lodashDecorators.memoizeAll();
lodashDecorators.Mixin();
lodashDecorators.mixin();
lodashDecorators.Negate();
lodashDecorators.negate();
lodashDecorators.Once();
lodashDecorators.once();
lodashDecorators.OverArgs();
lodashDecorators.overArgs();
lodashDecorators.Partial();
lodashDecorators.partial();
lodashDecorators.PartialRight();
lodashDecorators.partialRight();
lodashDecorators.Rearg(foo);
lodashDecorators.rearg(foo);
lodashDecorators.Rest();
lodashDecorators.rest();
lodashDecorators.Spread();
lodashDecorators.spread();
lodashDecorators.Tap();
lodashDecorators.tap();
lodashDecorators.Throttle();
lodashDecorators.throttle();
lodashDecorators.ThrottleGetter();
lodashDecorators.throttleGetter();
lodashDecorators.ThrottleSetter();
lodashDecorators.throttleSetter();
lodashDecorators.ThrottleAll(foo, bar);
lodashDecorators.throttleAll(foo, bar);
lodashDecorators.Unary();
lodashDecorators.unary();
lodashDecorators.Wrap(foo);
lodashDecorators.wrap(foo);

Disclaimer

This automated Lyo build may have not been properly tested, and is not guaranteed to work perfectly.

Use at your own risk

6.0.0

5 years ago