An open API service indexing awesome lists of open source software.

https://github.com/aviralg/lazr


https://github.com/aviralg/lazr

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# lazr

The goal of lazr is to analyze function strictness.

## Installation

You can install the released version of lazr from [CRAN](https://CRAN.R-project.org) with:

``` r
install.packages("lazr")
```

## Example

This is a basic example which shows you how to solve a common problem:

``` r
library(lazr)

trace_strictness({
library(stringr)
str_c("a")
})
```