This package has been deprecated

Author message:

This package has been renamed to '@sass-fairy/meta'.

sass-meta

1.0.0 • Public • Published

sass-meta

Release Version License

This Sass module provides more advanced meta functions.

Install

Requires

Install the package:

npm install sass-meta

Use the package like any other Sass module:

@use 'sass-meta';

Depending on your setup, you may need to configure node_modules as include path:

const sass = require('sass');

sass.render({
  file: scss_filename,
  includePaths: ['node_modules']
});

Public API

call-or-reference ( $function, $args... )
Allows a function to return its reference when no parameters are provided, otherwise maintaining its regular behavior.
get-keyword ( $args, $name [, $default] )
Gets the value of the named parameter from the given argument list, otherwise providing a default value.

Don't see the function you're looking for? Request a new feature describing a use case.

Combined API

In order to avoid constantly declaring both the native 'sass:meta' module and this library, the combined API has been added which merges the two.

// Rather than using both modules separately...
@use 'sass-meta';
@use 'sass:meta';

// ...this statement will accomplish the same thing.
@use 'sass-meta/meta';

Readme

Keywords

Package Sidebar

Install

npm i sass-meta

Weekly Downloads

37

Version

1.0.0

License

MIT

Unpacked Size

7.99 kB

Total Files

18

Last publish

Collaborators

  • roydukkey