===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
compass-sassy-maps-plugin-0.4.0/README.md-53-
compass-sassy-maps-plugin-0.4.0/README.md:54:* `map-get-deep($map, $keys...)` - Returns the value of the final item in `$keys` from the map `$map`. Will return `null` if no value is present and will warn of errors in search (such as if an intermediate depth is `null` or not a `map`).
compass-sassy-maps-plugin-0.4.0/README.md:55:* `map-set($map, $key, $value)` - Returns a map that has the `$key` in `$map` set to the to given `$value`.
compass-sassy-maps-plugin-0.4.0/README.md:56:* `map-set-deep($map, $keys, $value)` - Returns a map that has the `$key` in `$map` set to the given `$value`. `$key` should be single-depth list of keys, for instance `map-set-deep($map, ('foo' 'bar' 'baz'), "Hello World")`.
compass-sassy-maps-plugin-0.4.0/README.md:57:* `map-to-string($map)` - Returns a string representation of the given `$map`.
compass-sassy-maps-plugin-0.4.0/README.md-58-
##############################################
compass-sassy-maps-plugin-0.4.0/README.md-71-
compass-sassy-maps-plugin-0.4.0/README.md:72:* `memo-set($module, $key, $value)` - Sets a memoization `$key` to the given `$value` for the prescribed `$module` (framework). The function will return `true`. Also available as a mixin (`@include memo-set($module, $key, $value)`).
compass-sassy-maps-plugin-0.4.0/README.md:73:* `memo-get($module, $key)` - Returns the value of the memoization `$key` for the prescribed `$module`.
compass-sassy-maps-plugin-0.4.0/README.md-74-
##############################################
compass-sassy-maps-plugin-0.4.0/sass/sassy-maps/_map-get.scss-42-    @if $get == null {
compass-sassy-maps-plugin-0.4.0/sass/sassy-maps/_map-get.scss:43:      @warn "Map has no value for key search `#{$warn}`";
compass-sassy-maps-plugin-0.4.0/sass/sassy-maps/_map-get.scss-44-    }
compass-sassy-maps-plugin-0.4.0/sass/sassy-maps/_map-get.scss-45-    @else if type-of($get) != 'map' {
compass-sassy-maps-plugin-0.4.0/sass/sassy-maps/_map-get.scss:46:      @warn "Non-map value found for key search `#{$warn}`, cannot search for key `#{nth($keys, $i)}`";
compass-sassy-maps-plugin-0.4.0/sass/sassy-maps/_map-get.scss-47-    }