Learn R Programming

fresh (version 0.2.1)

search_vars: Search variables in a .scss file

Description

Search variables in a .scss file

Usage

search_vars(file)

Value

A data.frame with 2 columns: "variable" and "value".

Arguments

file

File path in which to search for variables.

Examples

Run this code
# Create a scss file with some variables
tmp_scss_file <- tempfile(fileext = ".scss")
writeLines("//Some variables\n $color: red;\n $body-bg: #FFF;", tmp_scss_file)

# Search for variables
search_vars(tmp_scss_file)


# Clean up
unlink(tmp_scss_file)

Run the code above in your browser using DataLab