Skip to content
View neeravp's full-sized avatar
Block or Report

Block or report neeravp

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Samay Samay Public

    Javascript Date Wrapper with cool functions

    JavaScript

  2. vue3-animate-in-view vue3-animate-in-view Public

    TypeScript 1 1

  3. Function to extend existing object b... Function to extend existing object by mixing properties and methods from other objects
    1
    function omixin(target, ...sources) {
    2
        
    3
        //This function works only when the target is an object
    4
        if(typeof target === 'object') {
    5
            
  4. Function to extend a class by mixing... Function to extend a class by mixing properties and methods from other objects or classes - composition not inheritance
    1
    function cmixin(target, ...sources) {
    2
        if(typeof target === 'function') {
    3
            sources.forEach(source => {
    4
                
    5
                //When composing from an object
  5. Function to mixin properties includi... Function to mixin properties including getters and setters from one javascript object to another.
    1
    function mixin(target, ...sources) {
    2
    
                  
    3
        sources.forEach(source => {
    4
        
    5
            let descriptors = Object.keys(source).reduce((descriptors, key) => {
  6. Bash Script to configure a new Larav... Bash Script to configure a new Laravel application
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    # Declare variables of type array to gather information regarding packages
    4
    name="$1"
    5
    with_jetstream=false