Back to Puter

puter.kv.MAX_VALUE_SIZE

src/docs/src/KV/MAX_VALUE_SIZE.md

2.5.1421 B
Original Source

A property of the puter.kv object that returns the maximum value size (in bytes) for the key-value store.

Syntax

js
puter.kv.MAX_VALUE_SIZE

Examples

<strong class="example-title">Get the max value size</strong>

html
<html>
  <body>
    <script src="https://js.puter.com/v2/"></script>
    <script>
      puter.print("Max Value Size: " + puter.kv.MAX_VALUE_SIZE);
    </script>
  </body>
</html>