0.0.7 • Published 2 years ago

ngx-verify-is-server-side v0.0.7

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

NgxVerifyIsServerSide

A simple package to make a verification if is Server Side and optmize the server responsabiliites.

Prerequisites

Angualr version: ^13.0.0

How to Use

  1. Install
npm i ngx-verify-is-server-side
  1. Import the service in your component.ts file.
 constructor(
      private _verifyServerSide: NgxVerifyIsServerSideService
  ) { }
  1. Make the verification
  yourMethod(): void {

    if(this._verifyServerSide.isServerSide){

      return;
    }

    ...
  }
0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago